X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcommon%2FGameState.h;h=078da1a3738cba03eeae82eadbe2c8d0711eca54;hb=bba1ac05e8c1854dc61bd737d228d9bc18bbb6ad;hp=f1edf484e474327363b65f64324ce8452d7da98d;hpb=06b6411e5dc8fc6b905530f7adbde8bd0c2bb0ea;p=l2e.git diff --git a/src/common/GameState.h b/src/common/GameState.h index f1edf48..078da1a 100644 --- a/src/common/GameState.h +++ b/src/common/GameState.h @@ -9,6 +9,7 @@ #define COMMON_GAMESTATE_H_ #include "Hero.h" +#include "Inventory.h" #include @@ -20,8 +21,12 @@ struct GameState { Hero heroes[7]; Hero *party[4]; + int partySize; + + Inventory inventory; Uint32 money; + Uint32 time; };