diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-05 18:28:15 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-05 18:28:15 +0100 |
commit | 6b45759e570bcaafc167e74ac46c8ffe05efa66e (patch) | |
tree | 5311804fbf01efdb9f73aee06474142320f379b6 | |
parent | e617b4f002638e37dbe4d2ce13849728e7e82c78 (diff) |
Make format
-rw-r--r-- | src/crepe/system/AISystem.cpp | 2 | ||||
-rw-r--r-- | src/example/AITest.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/system/AISystem.cpp b/src/crepe/system/AISystem.cpp index c67d5ea..3c61c78 100644 --- a/src/crepe/system/AISystem.cpp +++ b/src/crepe/system/AISystem.cpp @@ -1,6 +1,6 @@ -#include "manager/ComponentManager.h" #include "api/LoopTimer.h" #include "api/Transform.h" +#include "manager/ComponentManager.h" #include "manager/Mediator.h" #include "types.h" diff --git a/src/example/AITest.cpp b/src/example/AITest.cpp index 71aacb2..841b195 100644 --- a/src/example/AITest.cpp +++ b/src/example/AITest.cpp @@ -1,7 +1,5 @@ -#include <crepe/manager/Mediator.h> #include <SDL2/SDL_timer.h> #include <chrono> -#include <crepe/manager/ComponentManager.h> #include <crepe/api/AI.h> #include <crepe/api/Camera.h> #include <crepe/api/Color.h> @@ -10,6 +8,8 @@ #include <crepe/api/Scene.h> #include <crepe/api/Sprite.h> #include <crepe/api/Texture.h> +#include <crepe/manager/ComponentManager.h> +#include <crepe/manager/Mediator.h> using namespace crepe; using namespace std; |