1 #ifndef MENU_CONFIGMENU_H_
2 #define MENU_CONFIGMENU_H_
5 #include "../app/State.h"
6 #include "../geometry/Vector.h"
7 #include "../graphics/Menu.h"
15 explicit ConfigMenu(PartyMenu *parent);
18 virtual void HandleEvents(const app::Input &);
19 virtual void UpdateWorld(float deltaT);
20 virtual void Render(SDL_Surface *);
27 virtual void OnEnterState(SDL_Surface *screen);
28 virtual void OnExitState(SDL_Surface *screen);
29 virtual void OnResumeState(SDL_Surface *screen);
30 virtual void OnPauseState(SDL_Surface *screen);
32 virtual void OnResize(int width, int height);
34 void RenderHeadline(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
35 void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
39 graphics::Menu<int> configMenu;
45 #endif /* MENU_CONFIGMENU_H_ */