diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-11 15:01:46 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-11 15:01:46 +0100 |
commit | e49893e8de74534494792955c50ea0eabaf3ba38 (patch) | |
tree | c85a80001d4c17e467d69698defb628109559ecf /src/crepe/manager/Mediator.h | |
parent | 68bf20b491b4b7673c2ece7a6497b9faffd44eb1 (diff) |
WIP fix LoopTimerManager
Diffstat (limited to 'src/crepe/manager/Mediator.h')
-rw-r--r-- | src/crepe/manager/Mediator.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/crepe/manager/Mediator.h b/src/crepe/manager/Mediator.h index dfb37dc..b529f2c 100644 --- a/src/crepe/manager/Mediator.h +++ b/src/crepe/manager/Mediator.h @@ -5,17 +5,15 @@ // TODO: remove these singletons: #include "../facade/SDLContext.h" -#include "SaveManager.h" - namespace crepe { class ComponentManager; class SceneManager; +class EventManager; +class LoopTimerManager; class SaveManager; class ResourceManager; -class LoopTimerManager; -class EventManager; /** * Struct to pass references to classes that would otherwise need to be singletons down to * other classes within the engine hierarchy. Made to prevent constant changes to subclasses to |