// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; using FlaxEditor.Windows.Assets; using FlaxEngine; namespace FlaxEditor.Content { /// /// A asset proxy object. /// /// public class PreviewsCacheProxy : BinaryAssetProxy { /// public override string Name => "Previews Cache"; /// public override EditorWindow Open(Editor editor, ContentItem item) { return new PreviewsCacheWindow(editor, (AssetItem)item); } /// public override Color AccentColor => Color.FromRGB(0x80FFAE); /// public override Type AssetType => typeof(PreviewsCache); } }