Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Item/IInventory.cs
2025-03-09 12:24:30 -07:00

13 lines
239 B
C#

namespace Zennysoft.Ma.Adapter;
public interface IInventory
{
public List<InventoryItem> Items { get; }
public bool TryAdd(InventoryItem inventoryItem);
public void Remove(InventoryItem inventoryItem);
public void Sort();
}