Fix texture stuff
This commit is contained in:
12
Zennysoft.Game.Ma.Implementation/Item/IInventory.cs
Normal file
12
Zennysoft.Game.Ma.Implementation/Item/IInventory.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user