Handle window events from screen.c

Only the screen knows what to do on window events.

This paves the way to handle more window events.
This commit is contained in:
Romain Vimont
2019-10-20 15:32:33 +02:00
parent 6996cbf5d3
commit f6f2868868
3 changed files with 16 additions and 6 deletions

View File

@@ -76,4 +76,8 @@ screen_resize_to_fit(struct screen *screen);
void
screen_resize_to_pixel_perfect(struct screen *screen);
// react to window events
void
screen_handle_window_event(struct screen *screen, const SDL_WindowEvent *event);
#endif