Exemple #1
0
 public Vehicle(EManufacturer manufacturer, float maxSpeed, float price, EColor color)
 {
     this.manufacturer = manufacturer;
     this.MaxSpeed     = maxSpeed;
     this.Price        = price;
     this.color        = color;
 }
Exemple #2
0
 public Ambulance(EManufacturer manufacturer, float maxSpeed, float price, EColor color)
     : base(manufacturer, maxSpeed, price, color)
 {
 }
Exemple #3
0
 public EnemyCar(EManufacturer manufacturer, float maxSpeed, float price, EColor color) :
     base(manufacturer, maxSpeed, price, color)
 {
 }
Exemple #4
0
 public Automobile(EManufacturer manufacturer, float maxSpeed, float price, EColor color)
     : base(manufacturer, maxSpeed, price, color)
 {
 }