X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=src%2Fbattle%2Fstates%2FRunState.h;h=f94bd3e324414e960731977e1199ab35c8ed8e64;hb=dc275497c592669dda75645604a9b35d32f63e90;hp=f21280ee224a21ef1cbe6b7f470fddc4dfdb9453;hpb=5d1a76ae7725af998c6ee46adfe492c68ee1d34f;p=l2e.git diff --git a/src/battle/states/RunState.h b/src/battle/states/RunState.h index f21280e..f94bd3e 100644 --- a/src/battle/states/RunState.h +++ b/src/battle/states/RunState.h @@ -1,14 +1,10 @@ -/* - * RunState.h - * - * Created on: Aug 10, 2012 - * Author: holy - */ - #ifndef BATTLE_RUNSTATE_H_ #define BATTLE_RUNSTATE_H_ -#include "../fwd.h" +namespace battle { + class BattleState; +} + #include "../../app/State.h" #include "../../math/Vector.h" @@ -36,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