Files

31 lines
653 B
TypeScript
Raw Permalink Normal View History

2025-12-14 22:38:43 +08:00
/**
*
*
*/
export interface IState {
/**
*
*
*/
readonly name: string;
/**
*
* @param params ,
*/
onEnter(params?: any): void;
/**
* ()
* ,
* @param dt ()
*/
onUpdate?(dt: number): void;
/**
* 退
*
*/
onExit(): void;
}