Exemplo n.º 1
0
 public BattleShip(string aName) : base(aName)
 {
     Console.WriteLine("A Battle ship is created");
     work = new HeavyArtillery();
 }
Exemplo n.º 2
0
 public FireShip(string aName)
     : base(aName)
 {
     Console.WriteLine("A fire ship is created");
     work=new HeavyArtillery();
 }