X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FConfigMenu.h;h=e8b2692c3d982843adde46d4717dc8468d2fb047;hb=092a2dd175a4001a495c84ee85211734fb928c83;hp=8bb81f40e0414f836d90f9b4d3103dba09aede78;hpb=350055a7ff27c74882aff8a4d6af2014782f830b;p=l2e.git diff --git a/src/menu/ConfigMenu.h b/src/menu/ConfigMenu.h index 8bb81f4..e8b2692 100644 --- a/src/menu/ConfigMenu.h +++ b/src/menu/ConfigMenu.h @@ -1,16 +1,15 @@ -/* - * ConfigMenu.h - * - * Created on: Nov 29, 2012 - * Author: holy - */ - #ifndef MENU_CONFIGMENU_H_ #define MENU_CONFIGMENU_H_ -#include "fwd.h" +namespace math { + template + class Vector; +} +namespace menu { + class PartyMenu; +} + #include "../app/State.h" -#include "../geometry/Vector.h" #include "../graphics/Menu.h" namespace menu { @@ -23,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: @@ -38,8 +37,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;