X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FSelectIkari.h;h=43fa0cf1b4de65901e9505410082bccb6541294e;hb=667e1d9c6a78d0b608b518a4e5b5c31bc30e4e89;hp=8603a57f5f3258f657d588cbbbd7a8f401673d03;hpb=5ca18f73987fb3935ab34654cbbecf5eca4704cb;p=l2e.git diff --git a/src/battle/states/SelectIkari.h b/src/battle/states/SelectIkari.h index 8603a57..43fa0cf 100644 --- a/src/battle/states/SelectIkari.h +++ b/src/battle/states/SelectIkari.h @@ -1,16 +1,16 @@ -/* - * SelectIkari.h - * - * Created on: Aug 9, 2012 - * Author: holy - */ - #ifndef BATTLE_SELECTIKARI_H_ #define BATTLE_SELECTIKARI_H_ -#include "../fwd.h" +namespace battle { + class BattleState; + class SelectAttackType; +} +namespace math { + template + class Vector; +} + #include "../../app/State.h" -#include "../../geometry/Vector.h" namespace battle { @@ -24,7 +24,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,9 +36,9 @@ private: virtual void OnResize(int width, int height); private: - void RenderFrame(SDL_Surface *, const geometry::Vector &offset); - void RenderHeadline(SDL_Surface *, const geometry::Vector &offset); - void RenderMenu(SDL_Surface *, const geometry::Vector &offset); + void RenderFrame(SDL_Surface *, const math::Vector &offset); + void RenderHeadline(SDL_Surface *, const math::Vector &offset); + void RenderMenu(SDL_Surface *, const math::Vector &offset); private: BattleState *battle; @@ -48,4 +48,4 @@ private: } -#endif /* BATTLE_SELECTIKARI_H_ */ +#endif