多轮审查和修复

This commit is contained in:
2026-05-12 15:34:08 +08:00
parent f55d2a57c3
commit ebbbb7332e
805 changed files with 838724 additions and 1905 deletions

View File

@@ -0,0 +1,15 @@
namespace BaseGames.Parry
{
/// <summary>
/// 弹反事件数据。
/// 仅携带 Parry 程序集内可知的基础信息,避免与 Combat 程序集产生循环依赖。
/// </summary>
public struct ParryInfo
{
/// <summary>是否为完美弹反(在 PerfectParryThreshold 时间窗口内命中)。</summary>
public bool IsPerfect;
/// <summary>本次弹反获得的灵力值(已由 ParrySystem 按配置计算好)。</summary>
public int SoulGained;
}
}