AlicizaX/Client/Assets/Scripts/Hotfix/GameLogic/UI/Generate/ui_UILogicTestAlert.cs
陈思海 7a4d51f17c 优化
1.InputGlyph组件绑定整合
2.自动分析复合引用 动态切换绑定类型 移除旧的复杂多组件
3.增加热键测试
2026-03-20 13:51:22 +08:00

25 lines
509 B
C#

using UnityEngine;
using UnityEngine.UI;
using AlicizaX.UI.Runtime;
namespace Game.UI
{
[UIRes(ui_UILogicTestAlert.ResTag, EUIResLoadType.AssetBundle)]
public class ui_UILogicTestAlert : UIHolderObjectBase
{
public const string ResTag = "UILogicTestAlert";
#region Generated by Script Tool
[SerializeField]
private UXButton mBtnEscTest;
public UXButton BtnEscTest => mBtnEscTest;
[SerializeField]
private UXButton mBtnGTest;
public UXButton BtnGTest => mBtnGTest;
#endregion
}
}