aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-25 12:18:34 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-25 12:18:34 +0100
commit0557dc17bd5db07bce99df1bf3793a8bd99d2304 (patch)
tree815a6211c7307873a346a5cd90c3eb063a74a0dc /src/crepe
parent9e847e8d4a737ddc182cc905902a16f8776007a5 (diff)
removed some unnecesary headers
Diffstat (limited to 'src/crepe')
-rw-r--r--src/crepe/system/InputSystem.cpp3
-rw-r--r--src/crepe/system/InputSystem.h6
2 files changed, 3 insertions, 6 deletions
diff --git a/src/crepe/system/InputSystem.cpp b/src/crepe/system/InputSystem.cpp
index 2a47bdd..9690fec 100644
--- a/src/crepe/system/InputSystem.cpp
+++ b/src/crepe/system/InputSystem.cpp
@@ -1,5 +1,4 @@
-
-#include "../api/Event.h"
+#include "../api/Button.h"
#include "../api/EventManager.h"
#include "ComponentManager.h"
diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h
index 5f94446..cd7ca77 100644
--- a/src/crepe/system/InputSystem.h
+++ b/src/crepe/system/InputSystem.h
@@ -1,14 +1,12 @@
#pragma once
#include "System.h"
-
-#include "../api/Button.h"
-#include "../api/Event.h"
-#include "../api/Transform.h"
#include "../facade/SDLContext.h"
namespace crepe {
+class Button;
+class Transform;
/**
* \class InputSystem
* \brief Handles the processing of input events like mouse and keyboard interactions.