]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/ConfigMenu.h
removed useless comments
[l2e.git] / src / menu / ConfigMenu.h
index c3f96f0cc108d283b4e1eb0f4d4d46d4cf9003dd..666cc8960459b7ae51bc3e282de3289269cfb0be 100644 (file)
@@ -1,16 +1,16 @@
-/*
- * ConfigMenu.h
- *
- *  Created on: Nov 29, 2012
- *      Author: holy
- */
-
 #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 {
 
@@ -22,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:
@@ -37,14 +37,15 @@ 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;
+       graphics::Menu<int> configMenu;
 
 };
 
 }
 
-#endif /* MENU_CONFIGMENU_H_ */
+#endif