Files
FlaxEngine/Source/Editor/Content/Tree/RootContentTreeNode.cs
2026-02-28 12:38:07 -06:00

23 lines
629 B
C#

// Copyright (c) Wojciech Figat. All rights reserved.
namespace FlaxEditor.Content
{
/// <summary>
/// Root tree node for the content workspace.
/// </summary>
/// <seealso cref="ContentFolderTreeNode" />
public sealed class RootContentFolderTreeNode : ContentFolderTreeNode
{
/// <summary>
/// Initializes a new instance of the <see cref="RootContentFolderTreeNode"/> class.
/// </summary>
public RootContentFolderTreeNode()
: base(null, string.Empty)
{
}
/// <inheritdoc />
public override string NavButtonLabel => " /";
}
}