make xEventHandler method non-const

This commit is contained in:
Adrien Marquès 2020-02-05 18:17:50 +01:00
parent 414fbf6404
commit 4ca0312479
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
public:
// handles the event
virtual void handle(SDL_Event* event) const = 0;
virtual void handle(SDL_Event* event) = 0;
};