15 lines
No EOL
451 B
C
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;
|
|
} |