dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
防止子弹飞到小怪出生点身后
chenxin
2020-11-20
f0838fb72de9f31aeda9e9da869b389618a4fa24
[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
}
}