untitled-game/Assets/Scripts/Inventory/InventoryItemPlacement.cs

13 lines
252 B
C#

using UnityEngine;
public class InventoryItemPlacement
{
public InventoryItem Item;
public Vector2Int Origin;
public InventoryItemPlacement(InventoryItem item, Vector2Int origin)
{
Item = item;
Origin = origin;
}
}