13 lines
252 B
C#
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;
|
|
}
|
|
} |