예제 #1
0
 public void DealDamage(float damage, Character source)
 {
     RpcDealDamage();
     CurrentHealth -= Mathf.Clamp(damage - _equipmentManager.DamageReduction(), 0, Mathf.Infinity);
     CheckForDeath();
 }