CutePet/Assets/Scripts/GameScene/Panel/WatchSucPanel.cs

19 lines
384 B
C#
Raw Normal View History

2024-10-25 11:10:04 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class WatchSucPanel : BasePanel
{
//<2F>ر<EFBFBD>
public Button btnClose;
public Button btnOpen;
public override void Init()
{
btnClose.onClick.AddListener(() =>
{
UIManager.Instance.HidePanel<WatchSucPanel>(false);
});
}
}