X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FConfigMenu.h;h=cdee9fc376ee35ab04f0dafb90902a789882f34e;hb=5d1a76ae7725af998c6ee46adfe492c68ee1d34f;hp=8bb81f40e0414f836d90f9b4d3103dba09aede78;hpb=350055a7ff27c74882aff8a4d6af2014782f830b;p=l2e.git diff --git a/src/menu/ConfigMenu.h b/src/menu/ConfigMenu.h index 8bb81f4..cdee9fc 100644 --- a/src/menu/ConfigMenu.h +++ b/src/menu/ConfigMenu.h @@ -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 &offset) const; - void RenderMenu(SDL_Surface *screen, const geometry::Vector &offset) const; + void RenderHeadline(SDL_Surface *screen, const math::Vector &offset) const; + void RenderMenu(SDL_Surface *screen, const math::Vector &offset) const; private: PartyMenu *parent;