chenxin
2020-11-18 90b098fe0b1219a4a2c23aef55a3e8366fd1fcdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * 无尽模式boss技能类型
 * @Author: chenxin
 * @Date: 2020-11-02 16:33:34
 */
namespace KTGMGemClient
{
    public enum EndlessBossSkillType
    {
        None,
 
        // 魔法护盾
        ShieldWall,
 
        // 泡泡炸弹
        BubbleBomb,
 
        // 召唤木桩
        WoodPile
    }
}