X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FNumberAnimation.h;h=2885d0f73e41c2e91df46c13f332e4d726eabcd5;hb=8f4e771181491f1d83ce0c907b8dda0fbbe0ce93;hp=c198cd8f4c1c1cb3ca75a45f55c123e3b2855484;hpb=2a1d9169e1f6c2dfe0f93ed40d5fb68d3da342af;p=l2e.git diff --git a/src/battle/NumberAnimation.h b/src/battle/NumberAnimation.h index c198cd8..2885d0f 100644 --- a/src/battle/NumberAnimation.h +++ b/src/battle/NumberAnimation.h @@ -1,15 +1,14 @@ -/* - * NumberAnimation.h - * - * Created on: Aug 12, 2012 - * Author: holy - */ - #ifndef BATTLE_NUMBERANIMATION_H_ #define BATTLE_NUMBERANIMATION_H_ -#include "../app/fwd.h" -#include "../geometry/Vector.h" +namespace app { + class State; +} +namespace math { + template + class Vector; +} + #include "../graphics/Animation.h" namespace battle { @@ -28,7 +27,7 @@ public: int Width() const; int Height() const; - void Draw(SDL_Surface *dest, const geometry::Vector &position) const; + void Draw(SDL_Surface *dest, const math::Vector &position) const; private: int number; @@ -38,4 +37,4 @@ private: } -#endif /* BATTLE_NUMBERANIMATION_H_ */ +#endif