移除 bd

This commit is contained in:
2026-05-27 16:28:40 +08:00
parent 0b7568a96f
commit 0082c0b727
535 changed files with 10 additions and 35957 deletions

View File

@@ -1,34 +0,0 @@
#if GRAPH_DESIGNER
/// ---------------------------------------------
/// Behavior Designer
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.BehaviorDesigner.Runtime.Tasks
{
using Opsive.GraphDesigner.Runtime;
using Opsive.GraphDesigner.Runtime.Variables;
/// <summary>
/// Interface for tasks that can load subtrees.
/// </summary>
public interface ISubtreeReference
{
/// <summary>
/// A list of mapped SharedVariables. These variables can override the subtree.
/// </summary>
SharedVariableOverride[] SharedVariableOverrides { get; set; }
/// <summary>
/// Performs any runtime operations to evaluate the array of subtrees that should be returned.
/// </summary>
/// <param name="graphComponent">The component that the node is attached to.</param>
void EvaluateSubtrees(IGraphComponent graphComponent);
/// <summary>
/// The Subtrees that should be used at runtime.
/// </summary>
Subtree[] Subtrees { get; }
}
}
#endif