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

22 lines
342 B
C++
Raw Normal View History

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