// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved. using FlaxEngine; namespace FlaxEditor.Content { /// /// Content item that contains C# script file with source code. /// /// public class CSharpScriptItem : ScriptItem { /// /// Initializes a new instance of the class. /// /// The path to the item. public CSharpScriptItem(string path) : base(path) { } /// public override string TypeDescription => "C# Source Code"; /// public override SpriteHandle DefaultThumbnail => Editor.Instance.Icons.CSharpScript128; } }