mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-22 18:32:44 +01:00
20 lines
284 B
C++
20 lines
284 B
C++
|
#ifndef PAUSESTATE_HPP
|
||
|
#define PAUSESTATE_HPP
|
||
|
|
||
|
#include "State.hpp"
|
||
|
|
||
|
class PauseState : public State
|
||
|
{
|
||
|
public:
|
||
|
PauseState();
|
||
|
|
||
|
virtual void enter();
|
||
|
virtual void exit();
|
||
|
|
||
|
virtual void tick(float dt);
|
||
|
|
||
|
virtual void handleEvent(const sf::Event& event);
|
||
|
};
|
||
|
|
||
|
#endif // PAUSESTATE_HPP
|