diff options
Diffstat (limited to 'include/inventory.h')
-rw-r--r-- | include/inventory.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/inventory.h b/include/inventory.h index d68fed9..c477b8e 100644 --- a/include/inventory.h +++ b/include/inventory.h @@ -7,7 +7,7 @@ enum ITEM_ID { // Contains item IDs for every item in the game, this is how items are stored. IDs are also used to lookup item strings TEST_ITEM = 1, // A test item (duh) - SWORD_ITEM + SWORD_ITEM = 2 }; struct item_t { // Used to define entries in an entity's inventory @@ -17,6 +17,7 @@ struct item_t { // Used to define entries in an entity's inventory class Inventory { private: + unsigned int sel; unsigned int size; // Size of 'item' array struct item_t *item; // An array of the items contained in this inventory. public: @@ -26,6 +27,8 @@ public: int addItem(ITEM_ID id,unsigned char count); // Add 'count' items with an id of 'id' to the inventory int takeItem(ITEM_ID id,unsigned char count); // Take 'count' items with an id of 'id' from the inventory + void setSelection(unsigned int s); + void draw(void); // Draws a text list of items in this inventory (should only be called for the player for now) }; |