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