11 lines
278 B
C#
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);
|
|
}
|
|
} |