Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Item/IInventory.cs
2025-10-22 16:24:07 -07:00

17 lines
343 B
C#

using Zennysoft.Game.Implementation;
namespace Zennysoft.Ma.Adapter;
public interface IInventory
{
public List<InventoryItem> Items { get; }
public bool TryAdd(InventoryItem inventoryItem);
public bool TryInsert(InventoryItem inventoryItem, int index);
public void Remove(InventoryItem inventoryItem);
public void Sort();
}