public override string Attack(Ship targetShip)
        {
            this.DestroyShip(targetShip);

            return "We bombed them from the sky!";
        }
Ejemplo n.º 2
0
 public abstract string Attack(Ship target);
Ejemplo n.º 3
0
 protected void DestroyShip(Ship targetShip)
 {
     targetShip.IsDestroyed = true;
 }
Ejemplo n.º 4
0
        public override string Attack(Ship targetShip)
        {
            this.DestroyShip(targetShip);

            return "They didn't see us coming!";
        }