diff --git a/headers/Systems/Random.hpp b/headers/Systems/Random.hpp index af8da7b..14541ea 100644 --- a/headers/Systems/Random.hpp +++ b/headers/Systems/Random.hpp @@ -9,8 +9,9 @@ #ifndef GUARD_TOURMALINE_RANDOM_H #define GUARD_TOURMALINE_RANDOM_H -#include "../../libraries/random/xoshiro.h" #include "../Types.hpp" +#include + #include namespace Tourmaline::Systems { diff --git a/source/Systems/ECS/Component.cpp b/source/Systems/ECS/Component.cpp index 23f51ec..f727e3a 100644 --- a/source/Systems/ECS/Component.cpp +++ b/source/Systems/ECS/Component.cpp @@ -7,7 +7,7 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include "../../../headers/Systems/ECS.hpp" +#include using namespace Tourmaline::Systems::ECS; diff --git a/source/Systems/ECS/World.cpp b/source/Systems/ECS/World.cpp index 6a2ee6c..67ebdef 100644 --- a/source/Systems/ECS/World.cpp +++ b/source/Systems/ECS/World.cpp @@ -7,8 +7,8 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include "../../../headers/Systems/ECS.hpp" -#include "../../../headers/Systems/Random.hpp" +#include +#include using namespace Tourmaline::Systems::ECS; diff --git a/source/Systems/Logging.cpp b/source/Systems/Logging.cpp index c3e35e9..9285c49 100644 --- a/source/Systems/Logging.cpp +++ b/source/Systems/Logging.cpp @@ -7,7 +7,7 @@ * obtain one at http://mozilla.org/MPL/2.0/. */ -#include "../../headers/Systems/Logging.hpp" +#include #include #include diff --git a/source/Systems/Random.cpp b/source/Systems/Random.cpp index c131964..7bd1b5c 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 "../../headers/Systems/Random.hpp" +#include #include #include diff --git a/source/Types/UUID.cpp b/source/Types/UUID.cpp index 692c6ed..eae8754 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 #include #include