]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/TransitionState.h
removed useless comments
[l2e.git] / src / map / TransitionState.h
index 9f2cd193a1febfbd9eec9a1c610892c2711d57c4..9a73ae5c3019385a92257d9944e2a8fdaac6d218 100644 (file)
@@ -1,9 +1,16 @@
 #ifndef MAP_TRANSITIONSTATE_H_
 #define MAP_TRANSITIONSTATE_H_
 
-#include "fwd.h"
+namespace map {
+       class Map;
+       class MapState;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+
 #include "../app/State.h"
-#include "../math/Vector.h"
 
 namespace map {
 
@@ -16,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,4 +43,4 @@ private:
 
 }
 
-#endif /* MAP_TRANSITIONSTATE_H_ */
+#endif