]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/HeroStatus.h
removed lazy fwd headers
[l2e.git] / src / menu / HeroStatus.h
index 03c7811adecf79ec7368aa8bb45e1c462f5eb5c9..fbe21abb5b52aace4183d8241afa439d1ea0c673 100644 (file)
@@ -1,9 +1,14 @@
 #ifndef MENU_HEROSTATUS_H_
 #define MENU_HEROSTATUS_H_
 
-#include "fwd.h"
-#include "../common/fwd.h"
-#include "../geometry/Vector.h"
+namespace common {
+       class Hero;
+}
+namespace menu {
+       struct Resources;
+}
+
+#include "../math/Vector.h"
 
 #include <SDL.h>
 
@@ -21,9 +26,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;