1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 11:22:45 +01:00
openrw/rwgame/pausestate.hpp
2014-09-16 19:22:43 +01:00

20 lines
296 B
C++

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