diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-21 10:52:38 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-21 10:52:38 +0100 |
commit | 2a87a65e09638676b443dc538a80c3a592715860 (patch) | |
tree | 60f437ec29b2cd6e1d018dbf542d159527bb34f0 /src/crepe | |
parent | db66bb4babb19e8a86d5c61281c8b94469729d03 (diff) |
`make format`
Diffstat (limited to 'src/crepe')
-rw-r--r-- | src/crepe/api/Script.h | 2 | ||||
-rw-r--r-- | src/crepe/system/ScriptSystem.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/api/Script.h b/src/crepe/api/Script.h index 6418b04..f1a6b42 100644 --- a/src/crepe/api/Script.h +++ b/src/crepe/api/Script.h @@ -2,8 +2,8 @@ #include <vector> -#include "../util/OptionalRef.h" #include "../types.h" +#include "../util/OptionalRef.h" #include "EventManager.h" diff --git a/src/crepe/system/ScriptSystem.cpp b/src/crepe/system/ScriptSystem.cpp index d54bbc9..20a83f7 100644 --- a/src/crepe/system/ScriptSystem.cpp +++ b/src/crepe/system/ScriptSystem.cpp @@ -26,4 +26,3 @@ void ScriptSystem::update() { script->update(); } } - |