]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/RunState.h
removed useless comments
[l2e.git] / src / battle / states / RunState.h
index cf91f9ab47796eb0659223093526b3f0a61d6bb0..d3411978ff49656e392463ff6bdd66e8e24c6cce 100644 (file)
@@ -1,16 +1,15 @@
-/*
- * RunState.h
- *
- *  Created on: Aug 10, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_RUNSTATE_H_
 #define BATTLE_RUNSTATE_H_
 
-#include "../fwd.h"
+namespace battle {
+       class BattleState;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+
 #include "../../app/State.h"
-#include "../../geometry/Vector.h"
 
 namespace battle {
 
@@ -24,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:
@@ -36,7 +35,7 @@ private:
        virtual void OnResize(int width, int height);
 
 private:
-       void RenderTitleBar(SDL_Surface *screen, const geometry::Vector<int> &offset);
+       void RenderTitleBar(SDL_Surface *screen, const math::Vector<int> &offset);
 
 private:
        BattleState *battle;
@@ -46,4 +45,4 @@ private:
 
 }
 
-#endif /* BATTLE_RUNSTATE_H_ */
+#endif