/*---------------------------------------------------------- * HTBLA-Leonding * --------------------------------------------------------- * Author: Marc Tismonar * ---------------------------------------------------------- * Description: * Implementation of car.h. * ---------------------------------------------------------- */ #include "car.h" Car get_car(CarType carType) { Car car = {carType, RED, 0.0, 0.0, 0}; return car; }