]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectAttackType.h
switched geometric scalars from floating to fixed
[l2e.git] / src / battle / states / SelectAttackType.h
index 64a7dbd9414b615ba9cbec40d3c30cb36ac3d283..c8f6e99604775092ffe4c0998fd8b2faa6e29fd0 100644 (file)
@@ -10,7 +10,7 @@
 
 #include "../fwd.h"
 #include "../../app/State.h"
-#include "../../geometry/Vector.h"
+#include "../../math/Vector.h"
 
 namespace battle {
 
@@ -23,7 +23,7 @@ public:
 
 public:
        virtual void HandleEvents(const app::Input &);
-       virtual void UpdateWorld(float deltaT);
+       virtual void UpdateWorld(Uint32 deltaT);
        virtual void Render(SDL_Surface *);
 
 private:
@@ -35,7 +35,7 @@ private:
        virtual void OnResize(int width, int height);
 
 private:
-       void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset);
+       void RenderMenu(SDL_Surface *screen, const math::Vector<int> &offset);
 
 private:
        BattleState *battle;