X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FSelectItem.h;h=e9a30d8a76347611428775bd9b5d7839ee2e471f;hb=667e1d9c6a78d0b608b518a4e5b5c31bc30e4e89;hp=97863e21b97c32ea40f78ea44720fa0387a676fa;hpb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;p=l2e.git diff --git a/src/battle/states/SelectItem.h b/src/battle/states/SelectItem.h index 97863e2..e9a30d8 100644 --- a/src/battle/states/SelectItem.h +++ b/src/battle/states/SelectItem.h @@ -1,16 +1,16 @@ -/* - * SelectItem.h - * - * Created on: Aug 9, 2012 - * Author: holy - */ - #ifndef BATTLE_SELECTITEM_H_ #define BATTLE_SELECTITEM_H_ -#include "../fwd.h" +namespace battle { + class BattleState; + class SelectAttackType; +} +namespace math { + template + class Vector; +} + #include "../../app/State.h" -#include "../../math/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: @@ -47,4 +47,4 @@ private: } -#endif /* BATTLE_SELECTITEM_H_ */ +#endif