07-car/car.c
2024-11-14 15:11:05 +01:00

15 lines
No EOL
451 B
C

/*----------------------------------------------------------
* 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;
}