X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcommon%2FGameConfig.h;h=a3158e71222b4505a62fefa5a667c270899a9c1c;hb=092a2dd175a4001a495c84ee85211734fb928c83;hp=16b0142b426e058aca16564c648bd61f7f06b619;hpb=0ad5ca97b5df217329bc319d62564a9f46ba11d7;p=l2e.git diff --git a/src/common/GameConfig.h b/src/common/GameConfig.h index 16b0142..a3158e7 100644 --- a/src/common/GameConfig.h +++ b/src/common/GameConfig.h @@ -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,6 +23,8 @@ struct GameConfig { battle::Resources *battleResources; battle::PartyLayout *heroesLayout; + menu::Resources *menuResources; + }; }