dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
boss动作、结算特效、选择部分特效,关卡流程的bug
chenxin
2020-10-31
bc14626b98377c39db4d77029326389bb34484a8
[GemBattle.git]
/
Assets
/
Scripts
/
Enum
/
EndlessBossActionState.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
* 无尽模式boss动作状态
* @Author: chenxin
* @Date: 2020-10-30 16:56:20
*/
namespace KTGMGemClient
{
public enum EndlessBossActionState
{
// 站立
Standing,
// 召唤法阵
Summon,
// 死亡
Death
}
}