public interface IFsmNode { /// /// 节点名称 /// string Name { get; } void OnEnter(); void OnUpdate(); void OnExit(); }