From 26c93a842786805e60ba3078d5bf1a6f84544cc4 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Tue, 5 Nov 2024 19:48:02 +0300 Subject: [PATCH] fix: missing include --- src/frontend/ContentGfxCache.cpp | 1 - src/frontend/ContentGfxCache.hpp | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/ContentGfxCache.cpp b/src/frontend/ContentGfxCache.cpp index 1fccefcf..00ce478b 100644 --- a/src/frontend/ContentGfxCache.cpp +++ b/src/frontend/ContentGfxCache.cpp @@ -7,7 +7,6 @@ #include "content/Content.hpp" #include "content/ContentPack.hpp" #include "core_defs.hpp" -#include "graphics/commons/Model.hpp" #include "graphics/core/Atlas.hpp" #include "maths/UVRegion.hpp" #include "voxels/Block.hpp" diff --git a/src/frontend/ContentGfxCache.hpp b/src/frontend/ContentGfxCache.hpp index a268b2f6..3d3161d3 100644 --- a/src/frontend/ContentGfxCache.hpp +++ b/src/frontend/ContentGfxCache.hpp @@ -6,6 +6,8 @@ #include #include +#include "graphics/commons/Model.hpp" + class Content; class Assets; struct UVRegion;