15 lines
236 B
C++
15 lines
236 B
C++
|
#include <cstring>
|
||
|
#include <iostream>
|
||
|
#include <numeric>
|
||
|
|
||
|
#include "AdFunctions.h"
|
||
|
#include "AdTypes.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
auto ego_vehicle = Ad::Data::init_ego_vehicle();
|
||
|
Ad::Visualize::print_vehicle(ego_vehicle);
|
||
|
|
||
|
return 0;
|
||
|
}
|