]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/Caster.h
extracted common capsule base
[l2e.git] / src / loader / Caster.h
index c095cc90bf79c900b37942c3b6879e5cfca5bf3a..31ce61226677f40f8d32645bbf1d861e6680f3bf 100644 (file)
@@ -5,6 +5,7 @@
 #include "../battle/fwd.h"
 #include "../common/fwd.h"
 #include "../map/fwd.h"
+#include "../menu/fwd.h"
 
 #include <string>
 
@@ -21,9 +22,11 @@ private:
 
 public:
        battle::Resources *GetBattleResources(const std::string &identifier);
+       common::Capsule *GetCapsule(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);
+       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 +34,6 @@ public:
 private:
        Interpreter &intp;
 
-       int battleResourcesId;
-       int heroId;
-       int itemId;
-       int mapId;
-       int monsterId;
-       int partyLayoutId;
-       int spellId;
-
 };
 
 }