]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SwapHeroes.h
removed lazy fwd headers
[l2e.git] / src / battle / states / SwapHeroes.h
index 198e4d3d1504d0a99aa78471ee7d51b2123bb3c7..81fe774689d05a36ff2be87232f62f5e14d0d625 100644 (file)
@@ -8,9 +8,16 @@
 #ifndef BATTLE_SWAPHEROES_H_
 #define BATTLE_SWAPHEROES_H_
 
-#include "../fwd.h"
+namespace battle {
+       class BattleState;
+       class SelectMoveAction;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+
 #include "../../app/State.h"
-#include "../../geometry/Vector.h"
 
 namespace battle {
 
@@ -23,7 +30,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:
@@ -41,7 +48,7 @@ private:
        void MoveLeft();
 
 private:
-       void RenderCursors(SDL_Surface *screen, const geometry::Vector<int> &offset);
+       void RenderCursors(SDL_Surface *screen, const math::Vector<int> &offset);
 
 private:
        BattleState *battle;