diff options
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h index 938170610..a4d7a288c 100644 --- a/src/client.h +++ b/src/client.h @@ -317,6 +317,10 @@ public: static void applyKeyRepeat(); +#ifdef USE_SDL2 + void handleSDL2WindowEvent(const SDL_Event &event); +#endif + void optionChanged(const std::string &name) override; void action(const gcn::ActionEvent &event) override; @@ -443,4 +447,6 @@ private: bool mLogInput; }; +extern Client *client; + #endif // CLIENT_H |