]> git.localhorst.tv Git - l2e.git/blob - src/common/GameConfig.h
c13b4ab3efc60609684c9af47499ca45bdf3196d
[l2e.git] / src / common / GameConfig.h
1 /*
2  * GameConfig.h
3  *
4  *  Created on: Oct 9, 2012
5  *      Author: holy
6  */
7
8 #ifndef COMMON_GAMECONFIG_H_
9 #define COMMON_GAMECONFIG_H_
10
11 #include "fwd.h"
12 #include "../battle/fwd.h"
13 #include "../menu/fwd.h"
14
15 namespace common {
16
17 struct GameConfig {
18
19         GameConfig();
20
21         GameState *state;
22
23         battle::Resources *battleResources;
24         battle::PartyLayout *heroesLayout;
25
26         menu::Resources *menuResources;
27
28 };
29
30 }
31
32 #endif /* COMMON_GAMECONFIG_H_ */