Exemple #1
0
 public override void Attack(IFightable atackDestination)
 {
     if (Nearby(_playerPosition, _attackRange))
     {
         atackDestination.TakeAHit(random.Next(15, _maxAttackPower + 1));
     }
 }