]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/ChangeHero.h
switched geometric scalars from floating to fixed
[l2e.git] / src / menu / ChangeHero.h
index 6bb5f313bc2e69fe1a8405a2faeaf4ff1ff5a553..c046af30fa4bcd0fce1356cd5b460b16941431d0 100644 (file)
@@ -1,16 +1,9 @@
-/*
- * ChangeHero.h
- *
- *  Created on: Nov 4, 2012
- *      Author: holy
- */
-
 #ifndef MENU_CHANGEHERO_H_
 #define MENU_CHANGEHERO_H_
 
 #include "fwd.h"
 #include "../app/State.h"
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 
 #include <SDL.h>
 
@@ -24,7 +17,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:
@@ -41,7 +34,7 @@ private:
 
        void SelectedHero(int index);
 
-       void RenderHighlight(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderHighlight(SDL_Surface *screen, const math::Vector<int> &offset) const;
 
        static void OnHeroSelected(void *, int);