using vnxbqy.UI;
|
using System;
|
using System.Collections;
|
using System.Collections.Generic;
|
using System.Linq;
|
using UnityEngine;
|
using UnityEngine.UI;
|
|
public class AgeWarnWin : ILWindow
|
{
|
Button m_BtnClose;
|
|
|
protected override void BindController()
|
{
|
m_BtnClose = proxy.GetWidgtEx<Button>("close");
|
|
}
|
|
protected override void AddListeners()
|
{
|
|
m_BtnClose.onClick.AddListener(()=> {
|
WindowCenter.Instance.CloseIL<AgeWarnWin>();
|
});
|
}
|
|
}
|