diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-04 16:50:42 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-04 16:50:42 +0100 |
commit | 9cce00687e9ee318d72fd66793d070da2424fcbc (patch) | |
tree | 792c7f74ceb6e15ca317b4d37ff601a5dd25b9af /src/crepe/system/InputSystem.h | |
parent | 2a2e991371fc1164015df045227a6535137e74bc (diff) |
feedback changes
Diffstat (limited to 'src/crepe/system/InputSystem.h')
-rw-r--r-- | src/crepe/system/InputSystem.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h index 53f2c4e..e65ad30 100644 --- a/src/crepe/system/InputSystem.h +++ b/src/crepe/system/InputSystem.h @@ -1,8 +1,8 @@ #pragma once -#include "facade/SDLContext.h" -#include "types.h" -#include "util/OptionalRef.h" +#include "../facade/SDLContext.h" +#include "../types.h" +#include "../util/OptionalRef.h" #include "System.h" @@ -30,9 +30,6 @@ public: void update() override; private: - //! Reference to the currently active camera. - OptionalRef<Camera> curr_cam_ref; - //! Stores the last position of the mouse when the button was pressed. std::pair<int, int> last_mouse_down_position{INFINITY, INFINITY}; |