25 lines
540 B
Plaintext
25 lines
540 B
Plaintext
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class NewWishRing : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
NewWishManager.main.OnAfterDrawCardPhaseChanged += RefreshState;
|
|
RefreshState();
|
|
}
|
|
|
|
private void RefreshState()
|
|
{
|
|
// gameObject.SetActive(!NewWishManager.main.DrawCardPhase);
|
|
}
|
|
|
|
public void EnterDrawCardPhase()
|
|
{
|
|
NewWishManager.main.EnterDrawCardPhase();
|
|
}
|
|
}
|