godot_grid_inventory/Code/UI/InventoryGridItem.cs
2024-01-14 00:30:09 -05:00

12 lines
215 B
C#

using Godot;
namespace GodotGridInventory.Code.UI;
public partial class InventoryGridItem: Control
{
public InventoryGridItem(Item item)
{
Item = item;
}
public Item Item { get; } = null;
}