mirror of https://github.com/tuyoogame/YooAsset
12 lines
156 B
C#
12 lines
156 B
C#
|
|
|||
|
public interface IFsmNode
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 节点名称
|
|||
|
/// </summary>
|
|||
|
string Name { get; }
|
|||
|
|
|||
|
void OnEnter();
|
|||
|
void OnUpdate();
|
|||
|
void OnExit();
|
|||
|
}
|