2025-11-18 01:08:04 +08:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Unity.VisualScripting;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
public struct EventData
|
|
|
|
|
{
|
|
|
|
|
// ************** 事件类型 ****************
|
2025-11-18 02:11:55 +08:00
|
|
|
public enum EVENT_REGISTER_EVENT_ENUM
|
2025-11-18 01:08:04 +08:00
|
|
|
{
|
2025-11-18 02:08:07 +08:00
|
|
|
EVENT_LET_OS_DEAL_CARD, // 系统发牌
|
2025-11-18 12:56:16 +08:00
|
|
|
EVENT_LET_OS_DROP_CARD, // 系统弃牌
|
2025-11-18 01:08:04 +08:00
|
|
|
EVENT_LET_CARD_DROP_SELF, // 弃牌, 卡牌响应系统弃牌事件
|
|
|
|
|
EVENT_LET_CARD_DRAW_CARD, // 抽牌, 卡牌响应系统抽牌事件
|
|
|
|
|
}
|
|
|
|
|
}
|