]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/NumberAnimation.h
removed lazy fwd headers
[l2e.git] / src / battle / NumberAnimation.h
index 16208dd8a0fcb99b7e0a193f9c7e6f6c3fa96bae..698a5f18b754c9aa93d13ba8a527a0f6c3d69ebc 100644 (file)
@@ -1,8 +1,14 @@
 #ifndef BATTLE_NUMBERANIMATION_H_
 #define BATTLE_NUMBERANIMATION_H_
 
-#include "../app/fwd.h"
-#include "../geometry/Vector.h"
+namespace app {
+       class State;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+
 #include "../graphics/Animation.h"
 
 namespace battle {
@@ -21,7 +27,7 @@ public:
        int Width() const;
        int Height() const;
 
-       void Draw(SDL_Surface *dest, const geometry::Vector<int> &position) const;
+       void Draw(SDL_Surface *dest, const math::Vector<int> &position) const;
 
 private:
        int number;