Beispiel #1
0
 public Cruiser(FrontHull fronthull, MainHull hull, BackHull backhull, FtlDrive ftlDrive, CombatComputer combatComputer, Thruster thruster, Radar radar)
 {
     this.fronthull      = fronthull;
     this.hull           = hull;
     this.backhull       = backhull;
     this.ftlDrive       = ftlDrive;
     this.combatComputer = combatComputer;
     this.thruster       = thruster;
     this.radar          = radar;
 }
Beispiel #2
0
 public Battleship(FrontHull fronthull, MainHull hull, BackHull backhull, FtlDrive ftlDrive, CombatComputer combatComputer, Thruster thruster, Radar radar, Optional optional)
 {
     this.fronthull      = fronthull;
     this.hull           = hull;
     this.backhull       = backhull;
     this.ftlDrive       = ftlDrive;
     this.combatComputer = combatComputer;
     this.thruster       = thruster;
     this.radar          = radar;
     this.optional       = optional;
 }