liuzhiwei
2020-12-04 df178fec76b6f6fed0326ff9f07bef2206dd75f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * Agent小怪动作状态
 * @Author: chenxin
 * @Date: 2020-11-12 20:31:59
 */
namespace KTGMGemClient
{
    public enum AgentActionState
    {
        // 移动
        Move,
 
        // 受击
        GetHit,
 
        // 攻击
        Attack,
 
        // 死亡
        Death
    }
}