56 lines
1.0 KiB
C#
56 lines
1.0 KiB
C#
//**********************************************//
|
|
//作者:#何健#
|
|
//日期:#2017.01.09#
|
|
//简述:#用于打开装备界面时,传入分页及装备数据#
|
|
//*********************************************//
|
|
using UnityEngine;
|
|
|
|
using Thousandto.Code.Global;
|
|
|
|
namespace Thousandto.Code.Logic
|
|
{
|
|
/// <summary>
|
|
/// 类ItemSelect说明
|
|
/// </summary>
|
|
public class EquipSelect
|
|
{
|
|
#region //属性
|
|
|
|
|
|
/// <summary>
|
|
/// 分页
|
|
/// </summary>
|
|
public EquipFormSubPanel Locatioin
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 用于传入装备
|
|
/// </summary>
|
|
public object obj
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region//公共接口
|
|
public EquipSelect()
|
|
{
|
|
Locatioin = EquipFormSubPanel.Train;
|
|
obj = null;
|
|
}
|
|
#endregion
|
|
|
|
#region//回调函数
|
|
#endregion
|
|
|
|
#region//私有函数
|
|
#endregion
|
|
|
|
}
|
|
}
|