exc/udemy-cpp/exc01/AdConstants.h

17 lines
264 B
C
Raw Normal View History

#pragma once
#include <cstdint>
#include <cstdlib>
namespace Ad
{
2023-07-26 14:17:04 +02:00
namespace Consts
{
constexpr std::int32_t EGO_VEHICLE_ID = -1;
2023-07-26 14:17:04 +02:00
constexpr std::size_t VEHICLES_PER_LANE = 2;
constexpr std::int8_t VISUALIZE_STEP = 20;
} // namespace Constants
} // namespace Ad