2025-11-14 19:14:46 +08:00

11 lines
278 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CardEventUI : MonoBehaviour
{
public void OnButtonDownEndTurn()
{
CardOS.Instance.EVENT_TRIGGER(CardOSData.EVENT_REGISTER_CARD_ENUM.EVENT_LET_OS_END_TURN, true);
}
}