Пример #1
0
 public Exhaust(
    decimal price,
    int weight,
    int acceleration,
    int topSpeed,
    TunningGradeType gradeType,
    ExhaustType exhaustType)
 {
     this.exhaustType = exhaustType;
 }
Пример #2
0
 public Exhaust(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
 {
     this.exhaustType = exhaustType;
 }
Пример #3
0
 protected Exhaust(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
     : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.ExhaustType = exhaustType;
 }
Пример #4
0
 public Exhaust(
     decimal price,
     int weight,
     int topSpeed,
     int acceleration,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
     : base(price, weight, acceleration, topSpeed)
 {
     this.exhaustType = exhaustType;
     this.GradeType   = gradeType;
 }
 public MagnaflowExhaust(decimal price,
                         int weight,
                         int acceleration,
                         int topSpeed,
                         TunningGradeType gradeType,
                         ExhaustType exhaustType)
     : base(MagnaflowExhaustPrice,
            MagnaflowExhaustWeight,
            MagnaflowAcceleration,
            MagnaflowExhaustTopSpeed,
            MagnaflowExhaustGradeType,
            MagnaflowExhaustExhaustType)
 {
 }
 public RemusExhaust(decimal price,
                     int weight,
                     int acceleration,
                     int topSpeed,
                     TunningGradeType gradeType,
                     ExhaustType exhaustType)
     : base(RemusExhaustPrice,
            RemusExhaustWeight,
            RemusAcceleration,
            RemusExhaustTopSpeed,
            RemusExhaustGradeType,
            RemusExhaustExhaustType)
 {
 }
Пример #7
0
 public Exhaust(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
 {
     this.id           = DataGenerator.GenerateId();
     this.Price        = price;
     this.Weight       = weight;
     this.Acceleration = acceleration;
     this.TopSpeed     = topSpeed;
     this.ExhaustType  = exhaustType;
 }
Пример #8
0
 public Exhaust(
    decimal price,
    int weight,
    int acceleration,
    int topSpeed,
    TunningGradeType gradeType,
    ExhaustType exhaustType)
 {
     this.id = DataGenerator.GenerateId();
     this.Price = price;
     this.Weight = weight;
     this.Acceleration = acceleration;
     this.TopSpeed = topSpeed;
     this.ExhaustType = exhaustType;
 }
 public BorlaExhaust(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
     : base(
         BorlaExhaustPrice,
         BorlaExhaustWeight,
         BorlaAcceleration,
         BorlaExhaustTopSpeed,
         BorlaExhaustGradeType,
         BorlaExhaustExhaustType)
 {
 }
Пример #10
0
 public DeloreanModsCopy(DeloreanMods deloreanMods)
 {
     DeloreanType          = deloreanMods.DeloreanType;
     SuspensionsType       = deloreanMods.SuspensionsType;
     Wheel                 = deloreanMods.Wheel;
     Exterior              = deloreanMods.Exterior;
     Interior              = deloreanMods.Interior;
     OffCoils              = deloreanMods.OffCoils;
     GlowingEmitter        = deloreanMods.GlowingEmitter;
     GlowingReactor        = deloreanMods.GlowingReactor;
     DamagedBumper         = deloreanMods.DamagedBumper;
     SteeringWheelsButtons = deloreanMods.SteeringWheelsButtons;
     HoverUnderbody        = deloreanMods.HoverUnderbody;
     Vents                 = deloreanMods.Vents;
     Seats                 = deloreanMods.Seats;
     Reactor               = deloreanMods.Reactor;
     Exhaust               = deloreanMods.Exhaust;
     Hoodbox               = deloreanMods.Hoodbox;
     Hook  = deloreanMods.Hook;
     Plate = deloreanMods.Plate;
 }
Пример #11
0
 public RemusExhaust(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, ExhaustType exhaustType)
     : base(price, weight, acceleration, topSpeed, gradeType, exhaustType)
 {
 }
Пример #12
0
 public Exhaust(int weight, decimal price, int topSpeed, int acceleration, TunningGradeType type, ExhaustType exhaustType)
     : base(weight, price, topSpeed, acceleration, type)
 {
     this.exhaustType = exhaustType;
 }