diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-11 18:20:10 +0100 | 
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-11 18:20:10 +0100 | 
| commit | ec7a4af3e1cc0ebfe2c6df21f15575a1b1abbd6c (patch) | |
| tree | e36dc2b7c2b700fb7c38e87f61ad1f8400187496 | |
| parent | e7dc31dad155b7b623374d3bb0ffbb8a8f579d2a (diff) | |
fixed some headers
| -rw-r--r-- | src/crepe/api/LoopManager.cpp | 1 | ||||
| -rw-r--r-- | src/crepe/api/LoopTimer.cpp | 4 | 
2 files changed, 4 insertions, 1 deletions
| diff --git a/src/crepe/api/LoopManager.cpp b/src/crepe/api/LoopManager.cpp index b4382a6..f477efb 100644 --- a/src/crepe/api/LoopManager.cpp +++ b/src/crepe/api/LoopManager.cpp @@ -7,6 +7,7 @@  #include "LoopTimer.h"  using namespace crepe; +  LoopManager::LoopManager(  	const RenderSystem & renderSystem, const SDLContext & sdlContext,  	const LoopTimer & loopTimer, const ScriptSystem & scriptSystem, diff --git a/src/crepe/api/LoopTimer.cpp b/src/crepe/api/LoopTimer.cpp index f68d75a..16d813f 100644 --- a/src/crepe/api/LoopTimer.cpp +++ b/src/crepe/api/LoopTimer.cpp @@ -1,7 +1,9 @@ -#include "LoopTimer.h" +  #include "../facade/SDLContext.h"  #include "../util/log.h" +#include "LoopTimer.h" +  using namespace crepe;  LoopTimer::LoopTimer() { dbg_trace(); } |