X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FNumberAnimation.h;h=2885d0f73e41c2e91df46c13f332e4d726eabcd5;hb=42fea5412a4423e827aac36465b2d9a38968390e;hp=f7530562f048233788f7572ba6ae1c92bbebf51a;hpb=0542849dfccfec1ce1477265fa0fee2401a8fb23;p=l2e.git diff --git a/src/battle/NumberAnimation.h b/src/battle/NumberAnimation.h index f753056..2885d0f 100644 --- a/src/battle/NumberAnimation.h +++ b/src/battle/NumberAnimation.h @@ -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 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 &position) const; + void Draw(SDL_Surface *dest, const math::Vector &position) const; private: int number; @@ -43,4 +37,4 @@ private: } -#endif /* BATTLE_NUMBERANIMATION_H_ */ +#endif