//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Tuesday, December 12, 2017
|
//--------------------------------------------------------
|
using UnityEngine;
|
using System.Collections;
|
using UnityEngine.UI;
|
|
namespace vnxbqy.UI {
|
|
public class FloorChooseButton:MonoBehaviour {
|
[SerializeField] Button m_FloorChooseButton;
|
[SerializeField] Text m_FloorChooseText;
|
|
public Button FloorChooseBtn
|
{
|
get { return m_FloorChooseButton; }
|
set { m_FloorChooseButton = value; }
|
}
|
public Text FloorChooseText
|
{
|
get { return m_FloorChooseText; }
|
set { m_FloorChooseText = value; }
|
}
|
}
|
|
}
|