mirror of
https://github.com/D4M13N-D3V/godot_grid_inventory.git
synced 2025-03-14 08:14:55 +00:00
12 lines
215 B
C#
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;
|
|
} |