20 lines
414 B
C#
20 lines
414 B
C#
using GameCore;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ClubRankPopupPanel : MonoBehaviour
|
|
{
|
|
Button btn_close;
|
|
private void Awake()
|
|
{
|
|
btn_close = transform.Find("btn_close").GetComponent<Button>();
|
|
}
|
|
private void Start()
|
|
{
|
|
btn_close.onClick.AddListener(() =>
|
|
{
|
|
UIManager.Instance.DestroyUI(UITypes.ClubRankPopupPanel);
|
|
});
|
|
}
|
|
}
|