aboutsummaryrefslogtreecommitdiffstats
path: root/include/inventory.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-10-08 09:29:22 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-10-08 09:29:22 -0400
commit01a31f374b953b9d40548f8369289a8c6dc48b77 (patch)
tree20b6d58d83738c02c15fe45db464107a0f98dea3 /include/inventory.h
parente1982d3eb176d73e3bad2a344be8b12107b1c876 (diff)
fixed mouse
Diffstat (limited to 'include/inventory.h')
-rw-r--r--include/inventory.h5
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)
};