aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/SDLContext.h
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-09 13:49:22 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-09 13:49:22 +0100
commitae141f77fc54638bed0cea9213fe8900769e5d92 (patch)
treef3a2fe7543e725a33bfa67c8edd0aebd47b7f7c8 /src/crepe/facade/SDLContext.h
parent87c41870e7e66308ee0c74270e1f91f4943bd733 (diff)
seperated long function
Diffstat (limited to 'src/crepe/facade/SDLContext.h')
-rw-r--r--src/crepe/facade/SDLContext.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/crepe/facade/SDLContext.h b/src/crepe/facade/SDLContext.h
index 98be988..21d17c7 100644
--- a/src/crepe/facade/SDLContext.h
+++ b/src/crepe/facade/SDLContext.h
@@ -135,14 +135,14 @@ private:
* \return Events that occurred since last call to `get_events()`
*/
std::vector<SDLContext::EventData> get_events();
- // /**
- // * \brief Fills event_list with triggered window events
- // *
- // * This method checks if any window events are triggered and adds them to the event_list.
- // *
- // */
- // void handle_window_event(const SDL_WindowEvent& window_event,
- // std::vector<SDLContext::EventData>& event_list);
+ /**
+ * \brief Fills event_list with triggered window events
+ *
+ * This method checks if any window events are triggered and adds them to the event_list.
+ *
+ */
+ void handle_window_event(const SDL_WindowEvent& window_event,
+ std::vector<SDLContext::EventData>& event_list);
/**
* \brief Converts an SDL key code to the custom Keycode type.
*