1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02:00
openrw/rwgame/menustate.hpp
2014-09-16 19:22:43 +01:00

20 lines
291 B
C++

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