diff --git a/src/files/WorldFiles.cpp b/src/files/WorldFiles.cpp index 15f1be60..6c122cfd 100644 --- a/src/files/WorldFiles.cpp +++ b/src/files/WorldFiles.cpp @@ -17,7 +17,7 @@ #include #include #include -#include "../lighting/Lightmap.hpp" +#include #include "../maths/voxmaths.hpp" #include #include diff --git a/src/graphics/render/BlocksRenderer.cpp b/src/graphics/render/BlocksRenderer.cpp index 689dc423..25253cec 100644 --- a/src/graphics/render/BlocksRenderer.cpp +++ b/src/graphics/render/BlocksRenderer.cpp @@ -8,7 +8,7 @@ #include #include #include -#include "../../lighting/Lightmap.hpp" +#include #include #include diff --git a/src/graphics/render/ModelBatch.cpp b/src/graphics/render/ModelBatch.cpp index 7e3bbf96..749a2769 100644 --- a/src/graphics/render/ModelBatch.cpp +++ b/src/graphics/render/ModelBatch.cpp @@ -7,7 +7,7 @@ #include #include "../../window/Window.hpp" #include -#include "../../lighting/Lightmap.hpp" +#include #define GLM_ENABLE_EXPERIMENTAL #include diff --git a/src/logic/BlocksController.cpp b/src/logic/BlocksController.cpp index e20be6f2..e471e16d 100644 --- a/src/logic/BlocksController.cpp +++ b/src/logic/BlocksController.cpp @@ -3,7 +3,7 @@ #include #include #include -#include "../lighting/Lighting.hpp" +#include #include "../maths/fastmaths.hpp" #include #include diff --git a/src/logic/ChunksController.cpp b/src/logic/ChunksController.cpp index 2192b736..ea742aef 100644 --- a/src/logic/ChunksController.cpp +++ b/src/logic/ChunksController.cpp @@ -8,7 +8,7 @@ #include #include #include -#include "../lighting/Lighting.hpp" +#include #include "../maths/voxmaths.hpp" #include #include diff --git a/src/logic/PlayerController.cpp b/src/logic/PlayerController.cpp index 33c545f5..55b85077 100644 --- a/src/logic/PlayerController.cpp +++ b/src/logic/PlayerController.cpp @@ -9,7 +9,7 @@ #include #include #include -#include "../lighting/Lighting.hpp" +#include #include #include #include "../physics/Hitbox.hpp" diff --git a/src/logic/scripting/lua/libblock.cpp b/src/logic/scripting/lua/libblock.cpp index 2ae8c628..a0720539 100644 --- a/src/logic/scripting/lua/libblock.cpp +++ b/src/logic/scripting/lua/libblock.cpp @@ -1,5 +1,5 @@ #include -#include "../../../lighting/Lighting.hpp" +#include #include #include #include diff --git a/src/voxels/Chunk.cpp b/src/voxels/Chunk.cpp index 85f9f30e..5e35d61f 100644 --- a/src/voxels/Chunk.cpp +++ b/src/voxels/Chunk.cpp @@ -4,7 +4,7 @@ #include #include -#include "../lighting/Lightmap.hpp" +#include #include "voxel.hpp" Chunk::Chunk(int xpos, int zpos) : x(xpos), z(zpos) { diff --git a/src/voxels/Chunk.hpp b/src/voxels/Chunk.hpp index 5023266f..206542bc 100644 --- a/src/voxels/Chunk.hpp +++ b/src/voxels/Chunk.hpp @@ -7,7 +7,7 @@ #include #include -#include "../lighting/Lightmap.hpp" +#include #include "voxel.hpp" inline constexpr int CHUNK_DATA_LEN = CHUNK_VOL * 4; diff --git a/src/voxels/Chunks.cpp b/src/voxels/Chunks.cpp index 314b2a8d..ca5c2cb9 100644 --- a/src/voxels/Chunks.cpp +++ b/src/voxels/Chunks.cpp @@ -11,7 +11,7 @@ #include #include #include -#include "../lighting/Lightmap.hpp" +#include #include "../maths/aabb.hpp" #include "../maths/rays.hpp" #include "../maths/voxmaths.hpp" diff --git a/src/voxels/ChunksStorage.cpp b/src/voxels/ChunksStorage.cpp index f27496f8..f1fafc84 100644 --- a/src/voxels/ChunksStorage.cpp +++ b/src/voxels/ChunksStorage.cpp @@ -4,7 +4,7 @@ #include #include #include -#include "../lighting/Lightmap.hpp" +#include #include "../maths/voxmaths.hpp" #include #include diff --git a/src/world/Level.cpp b/src/world/Level.cpp index d6a668d4..1c50e2b6 100644 --- a/src/world/Level.cpp +++ b/src/world/Level.cpp @@ -4,7 +4,7 @@ #include #include #include -#include "../lighting/Lighting.hpp" +#include #include #include #include "../physics/Hitbox.hpp"