public Corvette(MainHull hull, FtlDrive ftlDrive, CombatComputer combatComputer, Thruster thruster, Radar radar) { this.hull = hull; this.ftlDrive = ftlDrive; this.combatComputer = combatComputer; this.thruster = thruster; this.radar = radar; }
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; }
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; }