public Turbocharger(decimal price,
                     int weight,
                     int acceleration,
                     int topSpeed,
                     TunningGradeType gradeType, TurbochargerType turbochargerType) : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.turbochargerType = turbochargerType;
 }
Esempio n. 2
0
 public Turbocharger(decimal price,
                     int weight, int acceleration, int topSpeed,
                     TunningGradeType tunningGrade, TurbochargerType turbochargerType)
 {
     this.Price            = price;
     this.Weight           = weight;
     this.Acceleration     = acceleration;
     this.TopSpeed         = topSpeed;
     this.GradeType        = tunningGrade;
     this.TurbochargerType = turbochargerType;
 }
Esempio n. 3
0
 public ZX8ParallelTwinTurbocharger(decimal price,
                                    int weight,
                                    int acceleration,
                                    int topSpeed,
                                    TunningGradeType tunningGrade,
                                    TurbochargerType turbochargerType)
     : base(ZX8ParallelTwinTurbochargerPrice,
            ZX8ParallelTwinTurbochargerWeight,
            ZX8ParallelTwinTurbochargerAcceleration,
            ZX8ParallelTwinTurbochargerTopSpeed,
            Zx8ParallelTwinTurbochargerTunningGradeType,
            Zx8ParallelTwinTurbochargerType)
 {
 }
Esempio n. 4
0
 public VortexR35SequentialTurbocharger(decimal price,
                                        int weight,
                                        int acceleration,
                                        int topSpeed,
                                        TunningGradeType tunningGrade,
                                        TurbochargerType turbochargerType)
     : base(VortexR35SequentialTurbochargerPrice,
            VortexR35SequentialTurbochargerWeight,
            VortexR35SequentialTurbochargerAcceleration,
            VortexR35SequentialTurbochargerTopSpeed,
            VortexR35SequentialTurbochargerTunningGradeType,
            VortexR35SequentialTurbochargerTurbochargerType)
 {
 }
 public ZX8ParallelTwinTurbocharger(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, TurbochargerType type)
     : base(price, weight, acceleration, topSpeed, gradeType, type)
 {
 }
 public ZX8ParallelTwinTurbocharger(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, TurbochargerType type) : base(price, weight, acceleration, topSpeed, gradeType, type)
 {
 }
Esempio n. 7
0
 public Turbocharger(int weight, decimal price, int topSpeed, int acceleration, TunningGradeType type, TurbochargerType turboType)
     : base(weight, price, topSpeed, acceleration, type)
 {
     this.TurbochargerType = turboType;
 }