snake_2024/include/Params.hpp

14 lines
270 B
C++
Raw Normal View History

2024-07-25 20:51:31 +03:00
#pragma once
#include "Vec.hpp"
constexpr Veci WORLD_SIZE = {.x = 10000, .y = 10000};
constexpr double MIN_CONTROL_DISTANCE = 10;
constexpr int64_t BOT_GEN_INTERVAL = 1000;
constexpr int64_t BOT_GEN_RAND_OFFSET = 200;
constexpr int64_t MIN_BOT_GEN_DISTANCE = 200;