15 lines
408 B
C#
15 lines
408 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Unity.VisualScripting;
|
|
using UnityEngine;
|
|
|
|
public enum EVENT_ENUM
|
|
{
|
|
// 系统事件
|
|
EVENT_LET_OS_DEAL_CARD, // 系统发牌
|
|
EVENT_LET_OS_DROP_CARD, // 系统弃牌
|
|
|
|
// 卡牌事件
|
|
EVENT_LET_CARD_DROP_SELF, // 弃牌, 卡牌响应系统弃牌事件
|
|
EVENT_LET_CARD_DRAW_CARD, // 抽牌, 卡牌响应系统抽牌事件
|
|
} |