Files
FlaxEngine/Source/Editor/Content/Tree/RootContentTreeNode.cs
2023-01-10 15:29:37 +01:00

23 lines
636 B
C#

// Copyright (c) 2012-2023 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 => string.Empty;
}
}