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