summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-08-23 18:17:21 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-08-23 18:17:21 +0200
commitf5308a69ecb6404b02ca8cae1a49711dfceb2c33 (patch)
treeff4e86a7c011de494433d3239654ba700edb4988 /src
parent54c89ca71fc7bbc94a4a6e1cbea2f4a8f1c62fad (diff)
fix non-pch build
Diffstat (limited to 'src')
-rw-r--r--src/chunk-render.cpp1
-rw-r--r--src/chunk-scenery.cpp1
-rw-r--r--src/tile-bbox.hpp1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/chunk-render.cpp b/src/chunk-render.cpp
index 6dff9a40..281d7207 100644
--- a/src/chunk-render.cpp
+++ b/src/chunk-render.cpp
@@ -1,6 +1,7 @@
#include "chunk.hpp"
#include "tile-atlas.hpp"
#include "shaders/shader.hpp"
+#include "compat/defs.hpp"
#include <algorithm>
#include <Corrade/Containers/ArrayViewStl.h>
#include <Magnum/GL/Buffer.h>
diff --git a/src/chunk-scenery.cpp b/src/chunk-scenery.cpp
index d12a754b..6a3987aa 100644
--- a/src/chunk-scenery.cpp
+++ b/src/chunk-scenery.cpp
@@ -3,6 +3,7 @@
#include "entity.hpp"
#include "anim-atlas.hpp"
#include "tile-atlas.hpp"
+#include <bit>
#include <Corrade/Containers/ArrayViewStl.h>
#include <Magnum/GL/Buffer.h>
diff --git a/src/tile-bbox.hpp b/src/tile-bbox.hpp
index 3275e22a..ba61f0bf 100644
--- a/src/tile-bbox.hpp
+++ b/src/tile-bbox.hpp
@@ -1,6 +1,7 @@
#pragma once
#include "src/tile-defs.hpp"
#include "src/local-coords.hpp"
+#include <Corrade/Containers/Pair.h>
#include <Magnum/Magnum.h>
#include <Magnum/Math/Vector2.h>