]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SwapHeroes.h
removed useless comments
[l2e.git] / src / battle / states / SwapHeroes.h
index 14d0d723c9611dca6a96db884a2ed0b6135329b3..eec03917aa9006dc7e12bc2a9917ecc663643a09 100644 (file)
@@ -1,16 +1,16 @@
-/*
- * SwapHeroes.h
- *
- *  Created on: Aug 10, 2012
- *      Author: holy
- */
-
 #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 "../../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:
@@ -54,4 +54,4 @@ private:
 
 }
 
-#endif /* BATTLE_SWAPHEROES_H_ */
+#endif