X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FTransitionState.h;h=9a73ae5c3019385a92257d9944e2a8fdaac6d218;hb=0b11a24a8b08c49d6e4301573602fb6d01e7a8c8;hp=9f2cd193a1febfbd9eec9a1c610892c2711d57c4;hpb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;p=l2e.git diff --git a/src/map/TransitionState.h b/src/map/TransitionState.h index 9f2cd19..9a73ae5 100644 --- a/src/map/TransitionState.h +++ b/src/map/TransitionState.h @@ -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 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