From 4133c05085634bc208d58655f9f03b9427dcb3ae Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 28 Aug 2022 16:36:03 +0200 Subject: [PATCH] (Hopefully) fixed incomplete type usage error. --- modules/voxelman/meshers/voxel_mesher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/voxelman/meshers/voxel_mesher.h b/modules/voxelman/meshers/voxel_mesher.h index 94674d4a0..ed4cf2877 100644 --- a/modules/voxelman/meshers/voxel_mesher.h +++ b/modules/voxelman/meshers/voxel_mesher.h @@ -29,7 +29,6 @@ SOFTWARE. #include "../defines.h" #include "core/containers/pool_vector.h" -#include "scene/3d/mesh_instance.h" #include "core/math/rect2.h" #include "core/math/vector2.h" @@ -49,6 +48,7 @@ const double PI = 3.141592653589793238463; class VoxelLibrary; class VoxelChunk; +class MeshInstance; class VoxelMesher : public Reference { GDCLASS(VoxelMesher, Reference);