init
This commit is contained in:
30
Assets/TcgEngine/Scripts/UI/TutoBox.cs
Normal file
30
Assets/TcgEngine/Scripts/UI/TutoBox.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
using TcgEngine.Client;
|
||||
|
||||
namespace TcgEngine.UI
|
||||
{
|
||||
public class TutoBox : MonoBehaviour
|
||||
{
|
||||
[Header("UI")]
|
||||
public Button next_btn;
|
||||
|
||||
void Awake()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void SetNextButton(bool active)
|
||||
{
|
||||
next_btn.gameObject.SetActive(active);
|
||||
}
|
||||
|
||||
public void OnClickNext()
|
||||
{
|
||||
Tutorial.Get().ShowNext();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user