35 lines
614 B
C#
35 lines
614 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
public class Nice_numPanel : MonoBehaviour
|
||
|
{
|
||
|
public Button CancleBtn;
|
||
|
public Button ConfirmBtn;
|
||
|
// Start is called before the first frame update
|
||
|
void Start()
|
||
|
{
|
||
|
CancleBtn.onClick.AddListener(CanclePanel);
|
||
|
ConfirmBtn.onClick.AddListener(ConfirmBuy);
|
||
|
}
|
||
|
|
||
|
void CanclePanel()
|
||
|
{
|
||
|
Destroy(this.gameObject);
|
||
|
}
|
||
|
|
||
|
void ConfirmBuy()
|
||
|
{
|
||
|
|
||
|
|
||
|
Destroy(this.gameObject);
|
||
|
}
|
||
|
|
||
|
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|