Beispiel #1
0
        public override IProjectile ProduceAttack()
        {
            var projectile = new PenetrationShell(this.Damage);
            this.ProjectilesFired++;

            return projectile;
        }
Beispiel #2
0
 public override IProjectile ProduceAttack()
 {
     IProjectile currentProjectile = new PenetrationShell();
     currentProjectile.Damage = this.Damage;
     return currentProjectile;
 }