dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
新增buff验证测试
chenxin
2020-11-18
90b098fe0b1219a4a2c23aef55a3e8366fd1fcdf
[GemBattle.git]
/
Assets
/
Scripts
/
Enum
/
EndlessBossSkillTowerType.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
* 无尽模式技能作用塔位类型
* @Author: chenxin
* @Date: 2020-11-02 16:31:13
*/
namespace KTGMGemClient
{
public enum EndlessBossSkillTowerType
{
None,
// 该赛道的所有塔
All,
// 单个塔,如果第一排塔被损坏,直接作用到第二排
Single
}
}