namespace ColdMint.scripts.behaviorTree; /// /// IBehavior Tree /// 行为树 /// public interface IBehaviorTree { string? Id { get; } IBehaviorTreeNode? Root { get; } }