]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/Caster.h
removed useless comments
[l2e.git] / src / loader / Caster.h
index 2aa6be09ed5762d8dae481bf321813d10f94e851..c20f5d949c32a9ccb6ad8dc8960e6db06e9506a7 100644 (file)
@@ -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 <string>
 
@@ -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