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

23 lines
367 B
C++
Raw Normal View History

2014-05-26 06:34:49 +02:00
#ifndef PAUSESTATE_HPP
#define PAUSESTATE_HPP
#include <SDL2/SDL_events.h>
2014-05-26 06:34:49 +02:00
#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);
2015-02-07 23:55:06 +01:00
virtual void draw(GameRenderer* r);
2014-05-26 06:34:49 +02:00
virtual void handleEvent(const SDL_Event& event);
2014-05-26 06:34:49 +02:00
};
#endif // PAUSESTATE_HPP