X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Floader%2FCaster.h;h=2aa6be09ed5762d8dae481bf321813d10f94e851;hb=0285546b22f9e8f496ca6b1abffdd232647b6b6a;hp=c095cc90bf79c900b37942c3b6879e5cfca5bf3a;hpb=cc3d698b8c1ad09d7a3f9e3f28bc84e0ac1735ea;p=l2e.git diff --git a/src/loader/Caster.h b/src/loader/Caster.h index c095cc9..2aa6be0 100644 --- a/src/loader/Caster.h +++ b/src/loader/Caster.h @@ -5,6 +5,7 @@ #include "../battle/fwd.h" #include "../common/fwd.h" #include "../map/fwd.h" +#include "../menu/fwd.h" #include @@ -24,6 +25,7 @@ public: common::Hero *GetHero(const std::string &identifier); common::Item *GetItem(const std::string &identifier); map::Map *GetMap(const std::string &identifier); + menu::Resources *GetMenuResources(const std::string &identifier); battle::Monster *GetMonster(const std::string &identifier); battle::PartyLayout *GetPartyLayout(const std::string &identifier); common::Spell *GetSpell(const std::string &identifier); @@ -31,14 +33,6 @@ public: private: Interpreter &intp; - int battleResourcesId; - int heroId; - int itemId; - int mapId; - int monsterId; - int partyLayoutId; - int spellId; - }; }