Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Item/IInventory.cs
Zenny bc161a58b3 Additional refactoring and fixing of equipment data
Add attack data to enemy attacks (might need to rework a little bit for primary/secondary attacks)
2025-10-23 00:05:44 -07:00

17 lines
430 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(EquipableItem currentWeapon, EquipableItem currentArmor, EquipableItem currentAccessory);
}