]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectAttackType.h
removed useless comments
[l2e.git] / src / battle / states / SelectAttackType.h
index 64a7dbd9414b615ba9cbec40d3c30cb36ac3d283..b7903a7766c02beae5ff6264841788e2379b8973 100644 (file)
@@ -1,16 +1,15 @@
-/*
- * SelectAttackType.h
- *
- *  Created on: Aug 7, 2012
- *      Author: holy
- */
-
 #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 +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:
@@ -35,7 +34,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;
@@ -43,4 +42,4 @@ private:
 };
 
 }
-#endif /* BATTLE_SELECTATTACKTYPE_H_ */
+#endif