//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Monday, July 23, 2018
|
//--------------------------------------------------------
|
using UnityEngine;
|
using System.Collections;
|
using UnityEngine.UI;
|
|
namespace vnxbqy.UI
|
{
|
|
public class LimitedTimeItemInfo : MonoBehaviour
|
{
|
[SerializeField] UIEffect m_Uieffect;
|
[SerializeField] ItemCell m_Itemcell;
|
public UIEffect Uieffect
|
{
|
get { return m_Uieffect; }
|
set { m_Uieffect = value; }
|
|
}
|
public ItemCell Item_Cell
|
{
|
get { return m_Itemcell; }
|
set { m_Itemcell = value; }
|
}
|
}
|
|
}
|
|
|
|