dashboard
repositories
filestore
activity
search
login
魏旭东
/
GemBattle
forked from
GemBattle
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
Merge branch 'master' of ssh://172.16.1.52:8091/GemBattle
wangguan
2020-10-21
c4b8dbd94f555b599bc847b7fa8a2e1c6caf31e1
[~wxd/GemBattle.git]
/
Assets
/
Scripts
/
Enum
/
EndlessBuffSelectState.cs
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
}
}