//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Wednesday, March 06, 2019
|
//--------------------------------------------------------
|
using UnityEngine;
|
using System.Collections;
|
using UnityEngine.UI;
|
|
namespace vnxbqy.UI
|
{
|
|
public class EquipStarUpgradeCandidate
|
{
|
public readonly Int2 equipPosition;
|
public readonly LogicBool selected = new LogicBool();
|
public readonly LogicInt starLevel = new LogicInt();
|
|
public EquipStarUpgradeCandidate(Int2 equipPosition)
|
{
|
this.equipPosition = equipPosition;
|
}
|
}
|
|
}
|