Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
right_left_enum.hpp
Go to the documentation of this file.
1#ifndef SRC_PLANNING_PLANNING_INCLUDE_UTILS_RIGHT_LEFT_ENUM_HPP_
2#define SRC_PLANNING_PLANNING_INCLUDE_UTILS_RIGHT_LEFT_ENUM_HPP_
3
10enum class TrackSide {
11 RIGHT = 0,
12 LEFT = 1
13};
14
15#endif
TrackSide
define enum for right and left sides of the track.