From 4833c19366de0474c81becad678423f98546ca6f Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 5 Feb 2026 15:45:02 +0100 Subject: [PATCH] Fix build regression --- Source/Engine/Content/Content.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Engine/Content/Content.h b/Source/Engine/Content/Content.h index 15da20a9c..e286e7c7d 100644 --- a/Source/Engine/Content/Content.h +++ b/Source/Engine/Content/Content.h @@ -3,6 +3,9 @@ #pragma once #include "Engine/Scripting/ScriptingType.h" +#ifndef _MSC_VER +#include "Engine/Core/Collections/Array.h" +#endif #include "AssetInfo.h" #include "Asset.h" #include "Config.h"