Files
FlaxEngine/Source/Editor/Content/Tree/RootContentTreeNode.cs
2024-02-26 19:00:48 +01:00

23 lines
628 B
C#

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