diff --git a/source/Systems/ECS/Components.cpp b/source/Systems/ECS/Components.cpp index de6fe06..f2466e4 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 "../../../headers/Systems/ECS.hpp" -#include "../../../headers/Systems/ECS/BuiltinComponents.hpp" +#include "Systems/ECS.hpp" +#include "Systems/ECS/BuiltinComponents.hpp" // Empty until future use diff --git a/source/Systems/ECS/World.cpp b/source/Systems/ECS/World.cpp index 1dce115..6175d4f 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 "../../../headers/Systems/ECS.hpp" -#include "../../../headers/Systems/ECS/BuiltinComponents.hpp" -#include "../../../headers/Systems/Random.hpp" +#include "Systems/ECS.hpp" +#include "Systems/ECS/BuiltinComponents.hpp" +#include "Systems/Random.hpp" using namespace Tourmaline::Systems; using namespace ECS; diff --git a/source/Systems/Random.cpp b/source/Systems/Random.cpp index c131964..2dbe49f 100644 --- a/source/Systems/Random.cpp +++ b/source/Systems/Random.cpp @@ -6,7 +6,8 @@ * 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 "../../headers/Systems/Random.hpp" + +#include "Systems/Random.hpp" #include #include diff --git a/source/Types/UUID.cpp b/source/Types/UUID.cpp index dfa5a8c..79c0422 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 "../../headers/Types.hpp" +#include "Types.hpp" #include #include