]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectTarget.h
removed lazy fwd headers
[l2e.git] / src / battle / states / SelectTarget.h
index 542e0e46449c0179bdc224cfb0bb549b6aaeea16..121b8ad235f72638aef1c60698d3255e6921a87b 100644 (file)
@@ -8,10 +8,20 @@
 #ifndef BATTLE_SELECTTARGET_H_
 #define BATTLE_SELECTTARGET_H_
 
-#include "../fwd.h"
+namespace battle {
+       class BattleState;
+       class SelectAttackType;
+       class TargetSelection;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+namespace graphics {
+       class Sprite;
+}
+
 #include "../../app/State.h"
-#include "../../math/Vector.h"
-#include "../../graphics/fwd.h"
 
 namespace battle {
 
@@ -24,7 +34,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: