mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-09 12:22:34 +01:00
6d80ce6424
Maybe some of replace with final, what do think?
22 lines
366 B
C++
22 lines
366 B
C++
#ifndef PAUSESTATE_HPP
|
|
#define PAUSESTATE_HPP
|
|
|
|
#include "StateManager.hpp"
|
|
|
|
class PauseState : public State {
|
|
public:
|
|
PauseState(RWGame* game);
|
|
|
|
void enter() override;
|
|
|
|
void exit() override;
|
|
|
|
void tick(float dt) override;
|
|
|
|
void draw(GameRenderer* r) override;
|
|
|
|
void handleEvent(const SDL_Event& event) override;
|
|
};
|
|
|
|
#endif // PAUSESTATE_HPP
|