]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/Caster.h
moved map data to maps.l2s
[l2e.git] / src / loader / Caster.h
index a3042accef0af000642fd4e8e0da1068b507c4d6..80e765e2d77c2404069fef8e0ce340e2056a1162 100644 (file)
@@ -11,6 +11,7 @@
 #include "Interpreter.h"
 #include "../battle/fwd.h"
 #include "../common/fwd.h"
+#include "../map/fwd.h"
 
 #include <string>
 
@@ -29,6 +30,7 @@ public:
        battle::Resources *GetBattleResources(const std::string &identifier);
        common::Hero *GetHero(const std::string &identifier);
        common::Item *GetItem(const std::string &identifier);
+       map::Map *GetMap(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);
@@ -39,6 +41,7 @@ private:
        int battleResourcesId;
        int heroId;
        int itemId;
+       int mapId;
        int monsterId;
        int partyLayoutId;
        int spellId;