AlicizaX/Client/Assets/Scripts/Hotfix/GameLogic/UI/Generate/ui_UICardWidget.cs

27 lines
562 B
C#
Raw Normal View History

2025-11-17 16:56:03 +08:00
using UnityEngine;
using AlicizaX.UI.Runtime;
namespace Game.UI
{
[UIRes(ui_UICardWidget.ResTag, EUIResLoadType.AssetBundle)]
public class ui_UICardWidget : UIHolderObjectBase
{
public const string ResTag = "UICardWidget";
#region Generated by Script Tool
#endregion
2025-12-01 16:46:28 +08:00
#region Controller
public UXController.ControllerHandle CtlLevel { get; private set; }
public override void Awake()
{
base.Awake();
var controller = gameObject.GetComponent<UXController>();
CtlLevel = controller.GetController("ctlLevel");
}
#endregion
2025-11-17 16:56:03 +08:00
}
}