_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/lianghaoLL/Nice_numPanel.cs

36 lines
738 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;
public NumberTc numberTc;
// 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()
{
//if(PlayerInfo.instance.Money-float.Parse(numberTc.price))
numberTc.musk_show();
Destroy(this.gameObject);
}
// Update is called once per frame
void Update()
{
}
}