From 552740b87bdde3cd14ef27dc2f21327eac8a809d Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 18 Oct 2024 02:43:16 +0300 Subject: [PATCH] add missing includes --- src/content/loading/GeneratorLoader.cpp | 2 ++ src/objects/Player.cpp | 2 ++ src/world/generator/VoxelFragment.cpp | 1 + 3 files changed, 5 insertions(+) diff --git a/src/content/loading/GeneratorLoader.cpp b/src/content/loading/GeneratorLoader.cpp index c2f1bb26..299565a4 100644 --- a/src/content/loading/GeneratorLoader.cpp +++ b/src/content/loading/GeneratorLoader.cpp @@ -1,5 +1,7 @@ #include "../ContentLoader.hpp" +#include + #include "../ContentPack.hpp" #include "files/files.hpp" diff --git a/src/objects/Player.cpp b/src/objects/Player.cpp index 223c1828..f9591064 100644 --- a/src/objects/Player.cpp +++ b/src/objects/Player.cpp @@ -1,7 +1,9 @@ #include "Player.hpp" #include +#define GLM_ENABLE_EXPERIMENTAL #include +#include #include #include "content/ContentReport.hpp" diff --git a/src/world/generator/VoxelFragment.cpp b/src/world/generator/VoxelFragment.cpp index 70dda238..832c1109 100644 --- a/src/world/generator/VoxelFragment.cpp +++ b/src/world/generator/VoxelFragment.cpp @@ -1,6 +1,7 @@ #include "VoxelFragment.hpp" #include +#include #include #include "data/dv_util.hpp"