15 lines
404 B
C#
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);}));
|
|
}
|
|
}
|