CutePet/Assets/Scripts/GameScene/Panel/BtnMail.cs
2024-10-25 11:10:04 +08:00

33 lines
588 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class BtnMail : MonoBehaviour
{
public Button btnMail;
public Button btnDel;
public Text txtMail;
// Start is called before the first frame update
void Awake()
{
btnDel.gameObject.SetActive(false);
}
void Start()
{
btnMail.onClick.AddListener(() =>
{
//ÏÔʾ
//UIManager.Instance.ShowPanel<>();
});
}
// Update is called once per frame
void Update()
{
}
}