void OnEndOfAttack(BaseEventParameters baseParams)
 {
     EndOfAttackEventParameters endOfAttackEvent = (EndOfAttackEventParameters)baseParams;
     if (m_AttackComponent.GetCurrentAttackLogic() == null || m_AttackComponent.CheckIsCurrentAttack(endOfAttackEvent.m_Attack))
     {
         m_CurrentAttack = null;
     }
 }