1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-10-05 08:37:20 +02:00
openrw/rwgame/menustate.hpp

20 lines
279 B
C++
Raw Normal View History

2014-05-26 06:34:49 +02:00
#ifndef MENUSTATE_HPP
#define MENUSTATE_HPP
#include "State.hpp"
class MenuState : public State
{
public:
MenuState();
virtual void enter();
virtual void exit();
virtual void tick(float dt);
virtual void handleEvent(const sf::Event& event);
};
#endif // MENUSTATE_HPP