47 lines
1.0 KiB
C#
47 lines
1.0 KiB
C#
using AlicizaX.UI;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using AlicizaX.UI.Runtime;
|
|
namespace Game.UI
|
|
{
|
|
[UIRes(ui_UILoadUpdateWindow.ResTag, EUIResLoadType.AssetBundle)]
|
|
public class ui_UILoadUpdateWindow : UIHolderObjectBase
|
|
{
|
|
public const string ResTag = "UILoadUpdateWindow";
|
|
#region Generated by Script Tool
|
|
|
|
[SerializeField]
|
|
private UXButton mBtnETest;
|
|
public UXButton BtnETest => mBtnETest;
|
|
|
|
[SerializeField]
|
|
private UXButton mBtnEscTest;
|
|
public UXButton BtnEscTest => mBtnEscTest;
|
|
|
|
[SerializeField]
|
|
private UXButton mBtnQTest;
|
|
public UXButton BtnQTest => mBtnQTest;
|
|
|
|
[SerializeField]
|
|
private UXButton mBtnTest;
|
|
public UXButton BtnTest => mBtnTest;
|
|
|
|
[SerializeField]
|
|
private UXImage mImgBackGround;
|
|
public UXImage ImgBackGround => mImgBackGround;
|
|
|
|
[SerializeField]
|
|
private RecyclerView mScrollViewTestList;
|
|
public RecyclerView ScrollViewTestList => mScrollViewTestList;
|
|
|
|
[SerializeField]
|
|
private TextMeshProUGUI mTextTitl;
|
|
public TextMeshProUGUI TextTitl => mTextTitl;
|
|
|
|
#endregion
|
|
|
|
|
|
}
|
|
}
|