2023-01-05 10:39:48 +01:00

14 lines
253 B
C++

#pragma once
#include <utils.h>
class IntersectionHandler
{
private:
public:
IntersectionHandler(/* args */);
~IntersectionHandler();
const bool foundLane(const FrameData& data);
const bool foundIntersection(const FrameData& data);
};