aboutsummaryrefslogtreecommitdiffstats
path: root/include/inventory.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/inventory.h')
-rw-r--r--include/inventory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/inventory.h b/include/inventory.h
index e27391a..d2b4c28 100644
--- a/include/inventory.h
+++ b/include/inventory.h
@@ -30,7 +30,7 @@ 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
- int useItem(ITEM_ID id);
+ int useItem(void);
bool tossd;
int itemToss(void);
@@ -42,5 +42,6 @@ public:
};
unsigned int initInventorySprites(void); // Loads as many inventory textures as it can find, returns count
+void itemUse(void *p);
#endif // INVENTORY_H