//-------------------------------------------------- // Motion Framework // Copyright©2018-2020 何冠峰 // Licensed under the MIT license //-------------------------------------------------- namespace MotionFramework.AI { public interface IFsmNode { /// /// 节点名称 /// string Name { get; } void OnEnter(); void OnUpdate(); void OnFixedUpdate(); void OnExit(); void OnHandleMessage(object msg); } }