Files
zeling_v2/Assets/Scripts/Parry/ParryInfoEventChannelSO.cs
2026-05-12 15:34:08 +08:00

14 lines
542 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using BaseGames.Core.Events;
using UnityEngine;
namespace BaseGames.Parry
{
/// <summary>
/// 弹反成功事件频道(架构 06_CombatModule §9
/// 可通过 Assets/Create/Events/ParryInfo 创建资产实例。
/// 订阅方PlayerController灵力 + 护盾恢复、FeedbackSystem特效/音效、UISystemUI 提示)
/// </summary>
[CreateAssetMenu(menuName = "Events/ParryInfo", fileName = "EVT_ParrySuccess")]
public class ParryInfoEventChannelSO : BaseEventChannelSO<ParryInfo> { }
}