11 lines
279 B
C#
11 lines
279 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_FOLD_CARD, true);
|
||
|
|
}
|
||
|
|
}
|