]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectMoveAction.h
cached some of the battle coordinates
[l2e.git] / src / battle / states / SelectMoveAction.h
index 66f3642c096ecb2e68af538ffd88249e329683b6..eb299ad828eae589c091fb2002439ecbf8f06432 100644 (file)
@@ -1,22 +1,12 @@
-/*
- * SelectMoveAction.h
- *
- *  Created on: Aug 7, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_SELECTMOVEACTION_H_
 #define BATTLE_SELECTMOVEACTION_H_
 
 namespace battle {
        class BattleState;
 }
-namespace math {
-       template<class>
-       class Vector;
-}
 
 #include "../../app/State.h"
+#include "../../math/Vector.h"
 
 namespace battle {
 
@@ -41,13 +31,14 @@ private:
        virtual void OnResize(int width, int height);
 
 private:
-       void RenderMenu(SDL_Surface *screen, const math::Vector<int> &offset);
+       void RenderMenu(SDL_Surface *screen);
 
 private:
        BattleState *battle;
+       math::Vector<int> position;
 
 };
 
 }
 
-#endif /* BATTLE_SELECTMOVEACTION_H_ */
+#endif