protected virtual void OnNoShield(NoShieldEventArgs e) { if (NoShield != null) { NoShield(this, e); } }
private NoShieldEventArgs OnNoShieldForOut() { NoShieldEventArgs args = new NoShieldEventArgs(); OnNoShield(args); return(args); }
private NoShieldEventArgs OnNoShield(int damage, int hp) { NoShieldEventArgs args = new NoShieldEventArgs(damage, hp); OnNoShield(args); return(args); }