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