From dc6d53de7cba69ba93ee98dd5e985217c81efb22 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 1 Apr 2026 16:01:01 +0200 Subject: [PATCH] Try to fix compile error --- Source/Engine/Content/Content.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Engine/Content/Content.h b/Source/Engine/Content/Content.h index f55f5f9c0..7038edc23 100644 --- a/Source/Engine/Content/Content.h +++ b/Source/Engine/Content/Content.h @@ -12,6 +12,7 @@ class Engine; class FlaxFile; +class BinaryAsset; class IAssetFactory; class AssetsCache; @@ -390,7 +391,7 @@ private: static void onAssetUnload(Asset* asset); static void onAssetChangeId(Asset* asset, const Guid& oldId, const Guid& newId); #if USE_EDITOR - friend class BinaryAsset; + friend BinaryAsset; friend class ContentService; static void onAssetDepend(BinaryAsset* asset, const Guid& otherId); static void onAddDependencies(Asset* asset);