//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Tuesday, April 17, 2018
|
//--------------------------------------------------------
|
using UnityEngine;
|
using System.Collections;
|
using UnityEngine.UI;
|
|
namespace vnxbqy.UI {
|
|
public class PickUpInformation:MonoBehaviour {
|
[SerializeField] Text m_CoentText;
|
public Text CoentText
|
{
|
get { return m_CoentText; }
|
set { m_CoentText = value; }
|
|
}
|
[SerializeField] Text m_TitleText;
|
public Text TitleText
|
{
|
get { return m_TitleText; }
|
set { m_TitleText = value; }
|
|
}
|
}
|
|
}
|
|
|
|