X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FPerformAttacks.h;h=de20f76cbeaa267ccd5f6a08eb96f0a3094f4dce;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=b8623698f5734715b3818c0fe6d375fa9a1b437c;hpb=ef2496b3cb7ce66b7f831278be66261834b732e5;p=l2e.git diff --git a/src/battle/states/PerformAttacks.h b/src/battle/states/PerformAttacks.h index b862369..de20f76 100644 --- a/src/battle/states/PerformAttacks.h +++ b/src/battle/states/PerformAttacks.h @@ -11,7 +11,7 @@ #include "../../app/State.h" #include "../NumberAnimation.h" -#include "../../geometry/Vector.h" +#include "../../math/Vector.h" #include "../../graphics/Animation.h" #include @@ -49,9 +49,9 @@ private: private: void AddNumberAnimations(const TargetSelection &); - void RenderTitleBar(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderNumbers(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderTargetAnimation(SDL_Surface *screen, const geometry::Vector &offset) const; + void RenderTitleBar(SDL_Surface *screen, const math::Vector &offset) const; + void RenderNumbers(SDL_Surface *screen, const math::Vector &offset) const; + void RenderTargetAnimation(SDL_Surface *screen, const math::Vector &offset) const; private: BattleState *battle; @@ -61,7 +61,7 @@ private: app::Timer titleBarTimer; app::Timer targetAnimationTimer; std::vector numberAnimation; - std::vector > numberPosition; + std::vector > numberPosition; int cursor; };