]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/ConfigMenu.h
removed useless comments
[l2e.git] / src / menu / ConfigMenu.h
index f7dda534966a2672da11e04aaddee6f8bab60c7a..666cc8960459b7ae51bc3e282de3289269cfb0be 100644 (file)
@@ -1,9 +1,15 @@
 #ifndef MENU_CONFIGMENU_H_
 #define MENU_CONFIGMENU_H_
 
-#include "fwd.h"
+namespace math {
+       template<class>
+       class Vector;
+}
+namespace menu {
+       class PartyMenu;
+}
+
 #include "../app/State.h"
-#include "../geometry/Vector.h"
 #include "../graphics/Menu.h"
 
 namespace menu {
@@ -16,7 +22,7 @@ public:
 
 public:
        virtual void HandleEvents(const app::Input &);
-       virtual void UpdateWorld(float deltaT);
+       virtual void UpdateWorld(Uint32 deltaT);
        virtual void Render(SDL_Surface *);
 
 public:
@@ -31,8 +37,8 @@ private:
 
        virtual void OnResize(int width, int height);
 
-       void RenderHeadline(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderHeadline(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderMenu(SDL_Surface *screen, const math::Vector<int> &offset) const;
 
 private:
        PartyMenu *parent;
@@ -42,4 +48,4 @@ private:
 
 }
 
-#endif /* MENU_CONFIGMENU_H_ */
+#endif