]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectMoveAction.h
removed useless comments
[l2e.git] / src / battle / states / SelectMoveAction.h
index 069f98d864aedb97b0cc0d7f4ba9170db3af4e5e..1eb7a48d8fb254da7b586d6ad64cbb272fa7eba7 100644 (file)
@@ -1,16 +1,15 @@
-/*
- * SelectMoveAction.h
- *
- *  Created on: Aug 7, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_SELECTMOVEACTION_H_
 #define BATTLE_SELECTMOVEACTION_H_
 
-#include "../fwd.h"
+namespace battle {
+       class BattleState;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+
 #include "../../app/State.h"
-#include "../../math/Vector.h"
 
 namespace battle {
 
@@ -23,7 +22,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:
@@ -44,4 +43,4 @@ private:
 
 }
 
-#endif /* BATTLE_SELECTMOVEACTION_H_ */
+#endif