From 8fef3b7f651e693887fa73b4e210b2308cc8ae98 Mon Sep 17 00:00:00 2001 From: fibref Date: Sat, 15 Aug 2026 19:22:41 +0800 Subject: [PATCH] fix missing include --- Source/Engine/Render2D/FontAsset.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Engine/Render2D/FontAsset.h b/Source/Engine/Render2D/FontAsset.h index 0529469b9..c8bcf435c 100644 --- a/Source/Engine/Render2D/FontAsset.h +++ b/Source/Engine/Render2D/FontAsset.h @@ -4,6 +4,9 @@ #include "Engine/Content/BinaryAsset.h" #include "Engine/Content/AssetReference.h" +#include "Engine/Core/Collections/Array.h" +#include "Engine/Core/Collections/Dictionary.h" +#include "Engine/Core/Math/Vector2.h" class Font; class FontManager;