diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h index 6eb26f2dc..fcef8b161 100644 --- a/src/game.h +++ b/src/game.h @@ -84,10 +84,16 @@ class Game final void handleMove(); +#ifdef USE_SDL2 + void handleSDL2WindowEvent(const SDL_Event &event); +#else void handleActive(const SDL_Event &event); +#endif void changeMap(const std::string &mapName); + void updateFrameRate(int fpsLimit); + /** * Returns the currently active map. */ |