godot_grid_inventory/Code/UI/InventoryGridItem.cs

12 lines
215 B
C#
Raw Normal View History

2024-01-14 00:30:09 -05:00
using Godot;
namespace GodotGridInventory.Code.UI;
public partial class InventoryGridItem: Control
{
public InventoryGridItem(Item item)
{
Item = item;
}
public Item Item { get; } = null;
}