Files
BingoGrassland/Assets/BingoBrain/ModuleUI/CallEnd/CallEndUI.cs
T

52 lines
1.1 KiB
C#
Raw Normal View History

2026-04-20 13:49:36 +08:00
using BingoBrain.Core;
namespace BingoBrain
{
public class CallEndUI : BaseUI
{
private CallEndUICtrl ctrl;
private CallEndModel model;
public CallEndUI(CallEndUICtrl ctrl) : base(ctrl)
{
uiName = UIConst.CallEndUI;
this.ctrl = ctrl;
}
protected override void SetUIInfo(UIInfo uiInfo)
{
uiInfo.packageName = "JBingoPlay";
uiInfo.assetName = "com_callEnd";
uiInfo.layerType = UILayerType.Popup;
uiInfo.isNeedOpenAnim = true;
uiInfo.isNeedCloseAnim = true;
uiInfo.isNeedUIMask = true;
}
#region
protected override void OnInit()
{
model = ModuleBoardk.GetModel(ModelConst.CallEndModel) as CallEndModel;
}
protected override void OnClose()
{
}
protected override void OnBind()
{
}
protected override void OnOpenBefore(object args)
{
}
protected override void OnOpen(object args)
{
}
#endregion
}
}