mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-15 20:20:08 +00:00
12 lines
156 B
C#
12 lines
156 B
C#
|
|
public interface IFsmNode
|
|
{
|
|
/// <summary>
|
|
/// 节点名称
|
|
/// </summary>
|
|
string Name { get; }
|
|
|
|
void OnEnter();
|
|
void OnUpdate();
|
|
void OnExit();
|
|
} |