]> git.localhorst.tv Git - l2e.git/blob - src/common/GameConfig.h
removed stupid file headers that eclipse put in
[l2e.git] / src / common / GameConfig.h
1 #ifndef COMMON_GAMECONFIG_H_
2 #define COMMON_GAMECONFIG_H_
3
4 #include "fwd.h"
5 #include "../battle/fwd.h"
6 #include "../menu/fwd.h"
7
8 namespace common {
9
10 struct GameConfig {
11
12         GameConfig();
13
14         GameState *state;
15
16         battle::Resources *battleResources;
17         battle::PartyLayout *heroesLayout;
18
19         menu::Resources *menuResources;
20
21 };
22
23 }
24
25 #endif /* COMMON_GAMECONFIG_H_ */