chore: initial commit

This commit is contained in:
2026-05-08 11:04:00 +08:00
commit f55d2a57c3
6278 changed files with 866081 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
#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