]> 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 f7dda534966a2672da11e04aaddee6f8bab60c7a..cdee9fc376ee35ab04f0dafb90902a789882f34e 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "fwd.h"
 #include "../app/State.h"
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 #include "../graphics/Menu.h"
 
 namespace menu {
@@ -16,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:
@@ -31,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;