diff --git a/src/graphics/core/ImageData.cpp b/src/graphics/core/ImageData.cpp index 5d33383a..ccf9f908 100644 --- a/src/graphics/core/ImageData.cpp +++ b/src/graphics/core/ImageData.cpp @@ -3,6 +3,7 @@ #include #include #include +#include ImageData::ImageData(ImageFormat format, uint width, uint height) : format(format), width(width), height(height) { diff --git a/src/voxels/ChunksStorage.cpp b/src/voxels/ChunksStorage.cpp index f1e7d841..9bc0a4f6 100644 --- a/src/voxels/ChunksStorage.cpp +++ b/src/voxels/ChunksStorage.cpp @@ -1,5 +1,7 @@ #include "ChunksStorage.hpp" +#include + #include "content/Content.hpp" #include "debug/Logger.hpp" #include "files/WorldFiles.hpp"