make vars public

This commit is contained in:
Chandler Cox
2023-11-24 10:53:43 -06:00
parent 53aae90d45
commit 2ddef2c6be
2 changed files with 4 additions and 4 deletions

View File

@@ -27,12 +27,12 @@ namespace FlaxEditor.Content
/// <summary> /// <summary>
/// Whether this node can be deleted. /// Whether this node can be deleted.
/// </summary> /// </summary>
protected virtual bool CanDelete => true; public virtual bool CanDelete => true;
/// <summary> /// <summary>
/// Whether this node can be duplicated. /// Whether this node can be duplicated.
/// </summary> /// </summary>
protected virtual bool CanDuplicate => true; public virtual bool CanDuplicate => true;
/// <summary> /// <summary>
/// Gets the content folder item. /// Gets the content folder item.

View File

@@ -13,10 +13,10 @@ namespace FlaxEditor.Content
private FileSystemWatcher _watcher; private FileSystemWatcher _watcher;
/// <inheritdoc /> /// <inheritdoc />
protected override bool CanDelete => false; public override bool CanDelete => false;
/// <inheritdoc /> /// <inheritdoc />
protected override bool CanDuplicate => false; public override bool CanDuplicate => false;
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="MainContentTreeNode"/> class. /// Initializes a new instance of the <see cref="MainContentTreeNode"/> class.