]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/MoveMenu.h
removed useless comments
[l2e.git] / src / battle / MoveMenu.h
index 63b9d884326f216b5236bff5ef8d10ef76d842e0..60feb00a17ec213c08c393fdcbfd765a42f82dfc 100644 (file)
@@ -1,14 +1,7 @@
-/*
- * MoveMenu.h
- *
- *  Created on: Aug 7, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_MOVEMENU_H_
 #define BATTLE_MOVEMENU_H_
 
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 #include "../graphics/Sprite.h"
 
 namespace battle {
@@ -30,7 +23,7 @@ public:
 public:
        void Select(Icon i) { selected = i; }
        Icon Selected() const { return selected; }
-       void Render(SDL_Surface *screen, const geometry::Vector<int> &position);
+       void Render(SDL_Surface *screen, const math::Vector<int> &position);
 
        int Width() const { return IconWidth(); }
        int Height() const { return 3 * IconHeight(); }
@@ -45,4 +38,4 @@ private:
 
 }
 
-#endif /* BATTLE_MOVEMENU_H_ */
+#endif