_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/kuangChang10/NoContractItem.cs
2024-12-06 16:14:45 +08:00

15 lines
404 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class NoContractItem : MonoBehaviour
{
[Header("有卡槽选择购买合约")] public Button OpenkuanghcangButton;
// Start is called before the first frame update
void Start()
{
OpenkuanghcangButton.onClick.AddListener((() => { KuangChang.Instance.onSetActive(true);}));
}
}