]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/RunState.h
cached some of the battle coordinates
[l2e.git] / src / battle / states / RunState.h
index f21280ee224a21ef1cbe6b7f470fddc4dfdb9453..f94bd3e324414e960731977e1199ab35c8ed8e64 100644 (file)
@@ -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<int> &offset);
+       void RenderTitleBar(SDL_Surface *screen);
 
 private:
        BattleState *battle;
        app::Timer<Uint32> timer;
+       math::Vector<int> framePosition;
+       math::Vector<int> frameSize;
+       math::Vector<int> textPosition;
 
 };
 
 }
 
-#endif /* BATTLE_RUNSTATE_H_ */
+#endif