dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
调整UI到BottomCanvas下,但是MainUI还需要保留,用来显示受击伤害文字
wangguan
2020-11-14
7f71e2c1cfb5a5bd329c87249c4da4f7f8cde330
[GemBattle.git]
/
Assets
/
Scripts
/
Enum
/
AgentActionState.cs
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
}
}