This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/****************************************************
文件:IState.cs
作者:Plane
邮箱: 1785275942@qq.com
日期:2019/03/19 6:38
功能:状态接口
*****************************************************/
public interface IState {
void Enter(EntityBase entity, params object[] args);//可变参数
void Process(EntityBase entity, params object[] args);
void Exit(EntityBase entity, params object[] args);
}
public enum AniState {
None,
Born,
Idle,
Move,
Attack,
Hit,
Die