X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FRunState.h;h=f94bd3e324414e960731977e1199ab35c8ed8e64;hb=0b11a24a8b08c49d6e4301573602fb6d01e7a8c8;hp=9a3a85608c47aa08d25d18e814189cd93e36b5f7;hpb=092a2dd175a4001a495c84ee85211734fb928c83;p=l2e.git diff --git a/src/battle/states/RunState.h b/src/battle/states/RunState.h index 9a3a856..f94bd3e 100644 --- a/src/battle/states/RunState.h +++ b/src/battle/states/RunState.h @@ -1,22 +1,12 @@ -/* - * RunState.h - * - * Created on: Aug 10, 2012 - * Author: holy - */ - #ifndef BATTLE_RUNSTATE_H_ #define BATTLE_RUNSTATE_H_ namespace battle { class BattleState; } -namespace math { - template - class Vector; -} #include "../../app/State.h" +#include "../../math/Vector.h" namespace battle { @@ -42,14 +32,17 @@ private: virtual void OnResize(int width, int height); private: - void RenderTitleBar(SDL_Surface *screen, const math::Vector &offset); + void RenderTitleBar(SDL_Surface *screen); private: BattleState *battle; app::Timer timer; + math::Vector framePosition; + math::Vector frameSize; + math::Vector textPosition; }; } -#endif /* BATTLE_RUNSTATE_H_ */ +#endif