]> git.localhorst.tv Git - l2e.git/blob - src/common/GameState.h
0ef442b200cf008ef7de28dbff702f9a8cc580e0
[l2e.git] / src / common / GameState.h
1 /*
2  * GameState.h
3  *
4  *  Created on: Oct 7, 2012
5  *      Author: holy
6  */
7
8 #ifndef COMMON_GAMESTATE_H_
9 #define COMMON_GAMESTATE_H_
10
11 #include "Hero.h"
12 #include "Inventory.h"
13
14 #include <SDL.h>
15
16 namespace common {
17
18 struct GameState {
19
20         GameState();
21
22         Hero heroes[7];
23         Hero *party[4];
24
25         Inventory inventory;
26
27         Uint32 money;
28         Uint32 time;
29
30 };
31
32 }
33
34 #endif /* COMMON_GAMESTATE_H_ */