diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-30 08:45:55 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-30 08:45:55 -0400 |
commit | a75a3b2d8f0848a05b09180d9517a8016cbafdde (patch) | |
tree | 7a70d92c90dab36deadef1e40a516c54231c116d /include/inventory.h | |
parent | 9ab6025a0cc3ab31c476f0b478ac69bfadd7f670 (diff) |
day/night cycling
Diffstat (limited to 'include/inventory.h')
-rw-r--r-- | include/inventory.h | 3 |
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 |