]> git.localhorst.tv Git - l2e.git/blobdiff - src/common/GameState.h
closed the gap between battle and map state (yay)
[l2e.git] / src / common / GameState.h
index f1edf484e474327363b65f64324ce8452d7da98d..fca50c1f846138168edd40cba990363ad49b6ea8 100644 (file)
@@ -9,6 +9,7 @@
 #define COMMON_GAMESTATE_H_
 
 #include "Hero.h"
+#include "Inventory.h"
 
 #include <SDL.h>
 
@@ -21,6 +22,8 @@ struct GameState {
        Hero heroes[7];
        Hero *party[4];
 
+       Inventory inventory;
+
        Uint32 money;
 
 };