1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-19 17:01:44 +02:00
openrw/rwgame/states/MenuState.hpp
Filip Gawin 6d80ce6424 Cleanup, use c++11 override
Maybe some of replace with
final, what do think?
2018-01-08 22:35:21 +00:00

23 lines
388 B
C++

#ifndef MENUSTATE_HPP
#define MENUSTATE_HPP
#include "StateManager.hpp"
class MenuState : public State {
public:
MenuState(RWGame* game);
void enter() override;
void exit() override;
void tick(float dt) override;
virtual void enterMainMenu();
virtual void enterLoadMenu();
void handleEvent(const SDL_Event& event) override;
};
#endif // MENUSTATE_HPP