33 lines
588 B
C#
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(() =>
|
|||
|
{
|
|||
|
//<2F><>ʾ
|
|||
|
//UIManager.Instance.ShowPanel<>();
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
// Update is called once per frame
|
|||
|
void Update()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|