Ejemplo n.º 1
0
 ///──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
 /// <summary>
 /// Reset and Remove the Active Ability
 /// </summary>
 protected virtual void ResetActiveAbility()
 {
     if (ActiveAbility != null)
     {
         ActiveAbility.ResetAbility();
         ActiveAbility = null;
     }
 }
Ejemplo n.º 2
0
 /// <summary>Reset and Remove the Active Ability </summary>
 protected virtual void ResetActiveAbility()
 {
     ActiveAbility?.ResetAbility();
     ActiveAbility = null;
 }