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