Example #1
0
 public IShip GetSingle()
 {
     SimpleShip ship = new SimpleShip(1);
     return ship;
 }
Example #2
0
 public IShip GetTriple()
 {
     SimpleShip ship = new SimpleShip(3);
     return ship;
 }
Example #3
0
 public IShip GetDouble()
 {
     SimpleShip ship = new SimpleShip(2);
     return ship;
 }