diff options
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 3690de5..b9b4859 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -1,8 +1,11 @@ #include <inventory.h> +#include <entities.h> #include <ui.h> #define ITEM_COUNT 2 // Total number of items that actually exist +extern Player *player; + const char *itemName[]={ "\0", "Dank Maymay", @@ -80,9 +83,6 @@ int Inventory::takeItem(ITEM_ID id,unsigned char count){ return -1; } -#include <entities.h> -extern Player *player; - void Inventory::draw(void){ unsigned int i=0; float y=SCREEN_HEIGHT/2,xoff; |