X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Floader%2FCaster.h;h=c20f5d949c32a9ccb6ad8dc8960e6db06e9506a7;hb=4309d259becd96ead792678257e910c03a6b4a3d;hp=2aa6be09ed5762d8dae481bf321813d10f94e851;hpb=0285546b22f9e8f496ca6b1abffdd232647b6b6a;p=l2e.git diff --git a/src/loader/Caster.h b/src/loader/Caster.h index 2aa6be0..c20f5d9 100644 --- a/src/loader/Caster.h +++ b/src/loader/Caster.h @@ -1,11 +1,25 @@ #ifndef LOADER_CASTER_H_ #define LOADER_CASTER_H_ +namespace battle { + struct Resources; + class Monster; + class PartyLayout; +} +namespace common { + class Capsule; + class Hero; + class Item; + class Spell; +} +namespace map { + class Map; +} +namespace menu { + struct Resources; +} + #include "Interpreter.h" -#include "../battle/fwd.h" -#include "../common/fwd.h" -#include "../map/fwd.h" -#include "../menu/fwd.h" #include @@ -22,6 +36,7 @@ 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); @@ -37,4 +52,4 @@ private: } -#endif /* LOADER_CASTER_H_ */ +#endif