]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/ConfigMenu.h
switched geometric scalars from floating to fixed
[l2e.git] / src / menu / ConfigMenu.h
index 8bb81f40e0414f836d90f9b4d3103dba09aede78..cdee9fc376ee35ab04f0dafb90902a789882f34e 100644 (file)
@@ -1,16 +1,9 @@
-/*
- * ConfigMenu.h
- *
- *  Created on: Nov 29, 2012
- *      Author: holy
- */
-
 #ifndef MENU_CONFIGMENU_H_
 #define MENU_CONFIGMENU_H_
 
 #include "fwd.h"
 #include "../app/State.h"
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 #include "../graphics/Menu.h"
 
 namespace menu {
@@ -23,7 +16,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:
@@ -38,8 +31,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;