dashboard
repositories
filestore
activity
search
login
魏旭东
/
GemBattle
forked from
GemBattle
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
完善PVE界面逻辑,使用正式的界面资源 解决bug:1.打掉小怪没有获得金币 2.摧毁塔位 塔没有消失
chenxin
2020-10-20
23ef235a263191230031dfaa02c054197fdddd91
[~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
}
}