13 lines
239 B
C#
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();
|
|
}
|