Esempio n. 1
0
 public Truck(int power, int cost, int weight) : base(power, cost, BuilderCar.get_random_name())
 {
     MaxWeight = weight;
 }
Esempio n. 2
0
 public Bus(int power, int cost, int seats) : base(power, cost, BuilderCar.get_random_name())
 {
     Seats = seats;
 }