Files
FlaxEngine/Source/Editor/Content/Tree/RootContentTreeNode.cs
2021-01-02 14:28:49 +01:00

23 lines
636 B
C#

// Copyright (c) 2012-2021 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;
}
}