Traveller/scripts/behaviorTree/IBehaviorTree.cs

12 lines
229 B
C#
Raw Normal View History

2024-04-28 13:55:19 +00:00
namespace ColdMint.scripts.behaviorTree;
/// <summary>
/// <para>IBehavior Tree</para>
/// <para>行为树</para>
/// </summary>
2024-04-28 13:55:19 +00:00
public interface IBehaviorTree
{
string? Id { get; }
2024-04-28 13:55:19 +00:00
IBehaviorTreeNode? Root { get; }
2024-04-28 13:55:19 +00:00
}