]> git.localhorst.tv Git - l2e.git/blobdiff - src/common/GameConfig.h
removed useless comments
[l2e.git] / src / common / GameConfig.h
index 16b0142b426e058aca16564c648bd61f7f06b619..fbbda22b5081dcae4632d5ca175c05988738f508 100644 (file)
@@ -1,15 +1,16 @@
-/*
- * GameConfig.h
- *
- *  Created on: Oct 9, 2012
- *      Author: holy
- */
-
 #ifndef COMMON_GAMECONFIG_H_
 #define COMMON_GAMECONFIG_H_
 
-#include "fwd.h"
-#include "../battle/fwd.h"
+namespace battle {
+       class PartyLayout;
+       struct Resources;
+}
+namespace common {
+       struct GameState;
+}
+namespace menu {
+       struct Resources;
+}
 
 namespace common {
 
@@ -22,8 +23,10 @@ struct GameConfig {
        battle::Resources *battleResources;
        battle::PartyLayout *heroesLayout;
 
+       menu::Resources *menuResources;
+
 };
 
 }
 
-#endif /* COMMON_GAMECONFIG_H_ */
+#endif