]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/Interpreter.h
added forwarding headers
[l2e.git] / src / loader / Interpreter.h
index bfe18c2a301bf79f3b8a751940ee4fb9be77b76c..9e90bcc4e98fd51d9f7b05594308b689a6df3d01 100644 (file)
@@ -8,11 +8,15 @@
 #ifndef LOADER_INTERPRETER_H_
 #define LOADER_INTERPRETER_H_
 
+#include "fwd.h"
 #include "ParsedSource.h"
 #include "TypeDescription.h"
+#include "../battle/fwd.h"
+#include "../common/fwd.h"
 #include "../geometry/Vector.h"
 #include "../graphics/Color.h"
 #include "../graphics/ComplexAnimation.h"
+#include "../graphics/fwd.h"
 
 #include <map>
 #include <set>
 #include <vector>
 #include <SDL.h>
 
-namespace battle {
-       class Hero;
-       class Monster;
-       class PartyLayout;
-       struct Resources;
-       class Stats;
-}
-
-namespace common {
-       class Ikari;
-       class Item;
-       class Spell;
-       class TargetingMode;
-}
-
-namespace graphics {
-       class Animation;
-       class Font;
-       class Frame;
-       class Gauge;
-       struct MenuProperties;
-       class SimpleAnimation;
-       class Sprite;
-}
-
 namespace loader {
 
-class Definition;
-class Literal;
-class PropertyList;
-class Value;
-
 class Interpreter {
 
 public: