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