WXMC/.svn/pristine/e3/e3ec932795eaf06245d2e681328f5a70d76ad792.svn-base
2024-12-04 16:18:46 +08:00

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();
}
}