X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FSwapHeroes.h;h=eec03917aa9006dc7e12bc2a9917ecc663643a09;hb=4309d259becd96ead792678257e910c03a6b4a3d;hp=198e4d3d1504d0a99aa78471ee7d51b2123bb3c7;hpb=5ca18f73987fb3935ab34654cbbecf5eca4704cb;p=l2e.git diff --git a/src/battle/states/SwapHeroes.h b/src/battle/states/SwapHeroes.h index 198e4d3..eec0391 100644 --- a/src/battle/states/SwapHeroes.h +++ b/src/battle/states/SwapHeroes.h @@ -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 Vector; +} + #include "../../app/State.h" -#include "../../geometry/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: @@ -41,7 +41,7 @@ private: void MoveLeft(); private: - void RenderCursors(SDL_Surface *screen, const geometry::Vector &offset); + void RenderCursors(SDL_Surface *screen, const math::Vector &offset); private: BattleState *battle; @@ -54,4 +54,4 @@ private: } -#endif /* BATTLE_SWAPHEROES_H_ */ +#endif