2025-11-14 14:53:29 +08:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
public class CardEventUI : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
public void OnButtonDownEndTurn()
|
|
|
|
|
{
|
2025-11-14 19:14:46 +08:00
|
|
|
CardOS.Instance.EVENT_TRIGGER(CardOSData.EVENT_REGISTER_CARD_ENUM.EVENT_LET_OS_END_TURN, true);
|
2025-11-14 14:53:29 +08:00
|
|
|
}
|
|
|
|
|
}
|