You're breathtaking!
This commit is contained in:
22
Source/Editor/Content/Tree/RootContentTreeNode.cs
Normal file
22
Source/Editor/Content/Tree/RootContentTreeNode.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// Copyright (c) 2012-2020 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user