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