// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved. using FlaxEngine; namespace FlaxEditor.Content { /// /// Content item for the auxiliary files. /// /// public class FileItem : ContentItem { /// /// Initializes a new instance of the class. /// /// The path to the file. public FileItem(string path) : base(path) { } /// public override ContentItemType ItemType => ContentItemType.Other; /// public override ContentItemSearchFilter SearchFilter => ContentItemSearchFilter.Other; /// public override string TypeDescription => "File"; /// public override SpriteHandle DefaultThumbnail => Editor.Instance.Icons.Document128; } }