]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/HeroStatus.h
renamed namespace geometry -> math
[l2e.git] / src / menu / HeroStatus.h
index 27c048ec76807cc63bf8100e90de473d00a53cff..e24cb6c0db3e6b9e2633f4ec18ed500f7830b3ef 100644 (file)
@@ -1,16 +1,9 @@
-/*
- * HeroStatus.h
- *
- *  Created on: Oct 21, 2012
- *      Author: holy
- */
-
 #ifndef MENU_HEROSTATUS_H_
 #define MENU_HEROSTATUS_H_
 
 #include "fwd.h"
 #include "../common/fwd.h"
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 
 #include <SDL.h>
 
@@ -28,9 +21,9 @@ public:
 
        int Width() const;
        int Height() const;
-       geometry::Vector<int> Size() const { return geometry::Vector<int>(Width(), Height()); }
+       math::Vector<int> Size() const { return math::Vector<int>(Width(), Height()); }
 
-       void Render(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void Render(SDL_Surface *screen, const math::Vector<int> &offset) const;
 
 private:
        const Resources *res;