17 lines
336 B
C#
17 lines
336 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class QiudaoPanel :BasePanel
|
|
{
|
|
public Button btnClose;
|
|
public override void Init()
|
|
{
|
|
btnClose.onClick.AddListener(() =>
|
|
{
|
|
UIManager.Instance.HidePanel<QiudaoPanel>();
|
|
});
|
|
}
|
|
}
|