]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectAttackType.h
removed lazy fwd headers
[l2e.git] / src / battle / states / SelectAttackType.h
index 64a7dbd9414b615ba9cbec40d3c30cb36ac3d283..3290666b3d0d33855a5beaca925279749ab6b77d 100644 (file)
@@ -8,9 +8,15 @@
 #ifndef BATTLE_SELECTATTACKTYPE_H_
 #define BATTLE_SELECTATTACKTYPE_H_
 
-#include "../fwd.h"
+namespace battle {
+       class BattleState;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+
 #include "../../app/State.h"
-#include "../../geometry/Vector.h"
 
 namespace battle {
 
@@ -23,7 +29,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 +41,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;