public void DoRangedAttack(IDoDamage _target) { _target.TakeDamage(10); }
public void DoMeleeAttack(IDoDamage _target) { _target.TakeDamage(20); }