X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FSelectSpell.h;h=1087b3fd1b7bc53b86124a8a1d88cdb577cd169f;hb=d97b7038c28058a76e7214e0dce0394fd8b67cff;hp=514a2b8a6b55175ad1ce5e596b4d9e458190ac00;hpb=5ca18f73987fb3935ab34654cbbecf5eca4704cb;p=l2e.git diff --git a/src/battle/states/SelectSpell.h b/src/battle/states/SelectSpell.h index 514a2b8..1087b3f 100644 --- a/src/battle/states/SelectSpell.h +++ b/src/battle/states/SelectSpell.h @@ -1,16 +1,16 @@ -/* - * SelectSpell.h - * - * Created on: Aug 8, 2012 - * Author: holy - */ - #ifndef BATTLE_SELECTSPELL_H_ #define BATTLE_SELECTSPELL_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 { @@ -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: @@ -35,9 +35,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; @@ -47,4 +47,4 @@ private: } -#endif /* BATTLE_SELECTSPELL_H_ */ +#endif