11 lines
279 B
C#
Raw Normal View History

2025-11-14 14:53:29 +08:00
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_FOLD_CARD, true);
}
}