1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 19:32:49 +01:00
openrw/rwgame/states/PauseState.hpp
2016-08-07 14:32:22 +01:00

23 lines
367 B
C++

#ifndef PAUSESTATE_HPP
#define PAUSESTATE_HPP
#include <SDL2/SDL_events.h>
#include "State.hpp"
class PauseState : public State
{
public:
PauseState(RWGame* game);
virtual void enter();
virtual void exit();
virtual void tick(float dt);
virtual void draw(GameRenderer* r);
virtual void handleEvent(const SDL_Event& event);
};
#endif // PAUSESTATE_HPP