diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-03 08:26:09 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-03 08:26:09 -0500 |
commit | 3c8140152bcf72eb1d64b580bb9c1e139bcbe191 (patch) | |
tree | d01fef6465eca39950c40dcf77cc9678f2a9457a /include/inventory.h | |
parent | bf91141782766f3648b62c6d96528fddb9ae7447 (diff) |
inv. fixes
Diffstat (limited to 'include/inventory.h')
-rw-r--r-- | include/inventory.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/inventory.h b/include/inventory.h index 18ef6c4..1ad46d0 100644 --- a/include/inventory.h +++ b/include/inventory.h @@ -39,8 +39,6 @@ enum ITEM_TYPE{ class Item{ protected: public: - friend class Inventory; - friend unsigned int initInventorySprites(void); ITEM_ID id; // ID of the item char *name; ITEM_TYPE type; // What category the item falls under @@ -89,6 +87,7 @@ public: }; void itemUse(void *p); +void initInventorySprites(void); char *getItemTexturePath(ITEM_ID id); #endif // INVENTORY_H |