提交 | 用户 | age
|
3d54e4
|
1 |
//-------------------------------------------------------- |
CX |
2 |
// [Author]: 第二世界 |
|
3 |
// [ Date ]: Wednesday, March 06, 2019 |
|
4 |
//-------------------------------------------------------- |
|
5 |
using UnityEngine; |
|
6 |
using System.Collections; |
|
7 |
using UnityEngine.UI; |
|
8 |
|
4465b6
|
9 |
namespace vnxbqy.UI |
3d54e4
|
10 |
{ |
CX |
11 |
|
|
12 |
public class EquipStarUpgradeCandidate |
|
13 |
{ |
642426
|
14 |
public readonly Int2 equipPosition; |
3d54e4
|
15 |
public readonly LogicBool selected = new LogicBool(); |
807064
|
16 |
public readonly LogicInt starLevel = new LogicInt(); |
3d54e4
|
17 |
|
642426
|
18 |
public EquipStarUpgradeCandidate(Int2 equipPosition) |
3d54e4
|
19 |
{ |
642426
|
20 |
this.equipPosition = equipPosition; |
3d54e4
|
21 |
} |
CX |
22 |
} |
|
23 |
|
|
24 |
} |
|
25 |
|
|
26 |
|
|
27 |
|