]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/NumberAnimation.h
removed useless comments
[l2e.git] / src / battle / NumberAnimation.h
index f7530562f048233788f7572ba6ae1c92bbebf51a..2885d0f73e41c2e91df46c13f332e4d726eabcd5 100644 (file)
@@ -1,21 +1,15 @@
-/*
- * NumberAnimation.h
- *
- *  Created on: Aug 12, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_NUMBERANIMATION_H_
 #define BATTLE_NUMBERANIMATION_H_
 
-#include "../graphics/Animation.h"
-
-#include "../geometry/Vector.h"
-
 namespace app {
-       class Application;
        class State;
 }
+namespace math {
+       template<class>
+       class Vector;
+}
+
+#include "../graphics/Animation.h"
 
 namespace battle {
 
@@ -33,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;
@@ -43,4 +37,4 @@ private:
 
 }
 
-#endif /* BATTLE_NUMBERANIMATION_H_ */
+#endif