]> git.localhorst.tv Git - l2e.git/blob - src/common/GameState.h
f1edf484e474327363b65f64324ce8452d7da98d
[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
13 #include <SDL.h>
14
15 namespace common {
16
17 struct GameState {
18
19         GameState();
20
21         Hero heroes[7];
22         Hero *party[4];
23
24         Uint32 money;
25
26 };
27
28 }
29
30 #endif /* COMMON_GAMESTATE_H_ */