diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-25 12:18:34 +0100 | 
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-25 12:18:34 +0100 | 
| commit | 0557dc17bd5db07bce99df1bf3793a8bd99d2304 (patch) | |
| tree | 815a6211c7307873a346a5cd90c3eb063a74a0dc /src/crepe/system/InputSystem.h | |
| parent | 9e847e8d4a737ddc182cc905902a16f8776007a5 (diff) | |
removed some unnecesary headers
Diffstat (limited to 'src/crepe/system/InputSystem.h')
| -rw-r--r-- | src/crepe/system/InputSystem.h | 6 | 
1 files changed, 2 insertions, 4 deletions
| 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. |