]> git.localhorst.tv Git - l2e.git/blobdiff - src/common/GameState.h
added hero selection state + status stub
[l2e.git] / src / common / GameState.h
index f1edf484e474327363b65f64324ce8452d7da98d..078da1a3738cba03eeae82eadbe2c8d0711eca54 100644 (file)
@@ -9,6 +9,7 @@
 #define COMMON_GAMESTATE_H_
 
 #include "Hero.h"
+#include "Inventory.h"
 
 #include <SDL.h>
 
@@ -20,8 +21,12 @@ struct GameState {
 
        Hero heroes[7];
        Hero *party[4];
+       int partySize;
+
+       Inventory inventory;
 
        Uint32 money;
+       Uint32 time;
 
 };