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>
/// Whether this node can be deleted.
/// </summary>
protected virtual bool CanDelete => true;
public virtual bool CanDelete => true;
/// <summary>
/// Whether this node can be duplicated.
/// </summary>
protected virtual bool CanDuplicate => true;
public virtual bool CanDuplicate => true;
/// <summary>
/// Gets the content folder item.

View File

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