aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/InputSystem.h
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-04 16:50:42 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-04 16:50:42 +0100
commit9cce00687e9ee318d72fd66793d070da2424fcbc (patch)
tree792c7f74ceb6e15ca317b4d37ff601a5dd25b9af /src/crepe/system/InputSystem.h
parent2a2e991371fc1164015df045227a6535137e74bc (diff)
feedback changes
Diffstat (limited to 'src/crepe/system/InputSystem.h')
-rw-r--r--src/crepe/system/InputSystem.h9
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};