From beab60fcd24a7302735acaa7b219fa22dc60fa08 Mon Sep 17 00:00:00 2001 From: cat Date: Thu, 5 Mar 2026 02:12:55 +0200 Subject: [PATCH] Made includes relative addresses --- source/Systems/ECS/Components.cpp | 4 ++-- source/Systems/ECS/World.cpp | 6 +++--- source/Systems/Random.cpp | 2 +- source/Types/UUID.cpp | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/source/Systems/ECS/Components.cpp b/source/Systems/ECS/Components.cpp index 1c5612b..de6fe06 100644 --- a/source/Systems/ECS/Components.cpp +++ b/source/Systems/ECS/Components.cpp @@ -7,7 +7,7 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include -#include +#include "../../../headers/Systems/ECS.hpp" +#include "../../../headers/Systems/ECS/BuiltinComponents.hpp" // Empty until future use diff --git a/source/Systems/ECS/World.cpp b/source/Systems/ECS/World.cpp index ca616b0..1dce115 100644 --- a/source/Systems/ECS/World.cpp +++ b/source/Systems/ECS/World.cpp @@ -7,9 +7,9 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include -#include -#include +#include "../../../headers/Systems/ECS.hpp" +#include "../../../headers/Systems/ECS/BuiltinComponents.hpp" +#include "../../../headers/Systems/Random.hpp" using namespace Tourmaline::Systems; using namespace ECS; diff --git a/source/Systems/Random.cpp b/source/Systems/Random.cpp index 7bd1b5c..c131964 100644 --- a/source/Systems/Random.cpp +++ b/source/Systems/Random.cpp @@ -6,7 +6,7 @@ * v. 2.0. If a copy of the MPL was not distributed with this file, You can * obtain one at http://mozilla.org/MPL/2.0/. */ -#include +#include "../../headers/Systems/Random.hpp" #include #include diff --git a/source/Types/UUID.cpp b/source/Types/UUID.cpp index e027a8c..dfa5a8c 100644 --- a/source/Types/UUID.cpp +++ b/source/Types/UUID.cpp @@ -7,7 +7,7 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include +#include "../../headers/Types.hpp" #include #include