diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-18 14:44:01 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-18 14:44:01 +0100 |
commit | e20263f4c6b4c354baa301b21a6ac1fb0a7d5848 (patch) | |
tree | aa78cf45d09340559e6789d8fd452ddbd09a8207 /src/crepe/system/InputSystem.h | |
parent | 45c799f71e6f0db1de27bdd601c0d441f0012468 (diff) |
make format
Diffstat (limited to 'src/crepe/system/InputSystem.h')
-rw-r--r-- | src/crepe/system/InputSystem.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h index 52b1cc4..9ab76f6 100644 --- a/src/crepe/system/InputSystem.h +++ b/src/crepe/system/InputSystem.h @@ -65,7 +65,8 @@ private: * * This method processes the mouse click event and triggers the corresponding button action. */ - void handle_click(const MouseButton & mouse_button, const vec2 & mouse_pos,const Camera & current_cam); + void handle_click(const MouseButton & mouse_button, const vec2 & mouse_pos, + const Camera & current_cam); /** * \brief Handles the mouse movement event. @@ -76,7 +77,8 @@ private: * * This method processes the mouse movement event and updates the button hover state. */ - void handle_move(const EventData & event_data, const vec2 & mouse_pos,const Camera & current_cam); + void handle_move(const EventData & event_data, const vec2 & mouse_pos, + const Camera & current_cam); /** * \brief Checks if the mouse position is inside the bounds of the button. |