chenxin
2020-10-21 16afec10e117a04846266fa6584b3fb1329ec7d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * 无尽模式buff选择状态
 * @Author: chenxin
 * @Date: 2020-10-19 15:39:42
 */
namespace KTGMGemClient
{
    public enum EndlessBuffSelectState
    {
        // 未选择
        Normal,
 
        // 已选择,未选中
        Unselected,
 
        // 已选中
        Selected
    }
}