mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
27 lines
455 B
C#
Executable file
27 lines
455 B
C#
Executable file
using HISP.Game.Items;
|
|
|
|
namespace HISP.Game.Inventory
|
|
{
|
|
|
|
interface IInventory
|
|
{
|
|
|
|
void Add(ItemInstance item);
|
|
void Remove(ItemInstance item);
|
|
int Count
|
|
{
|
|
get;
|
|
}
|
|
|
|
InventoryItem[] GetItemList();
|
|
|
|
bool HasItem(int randomId);
|
|
bool HasItemId(int itemId);
|
|
|
|
InventoryItem GetItemByItemId(int itemId);
|
|
|
|
InventoryItem GetItemByRandomid(int randomId);
|
|
|
|
|
|
}
|
|
}
|