mirror of
https://github.com/ProgramSnail/snake_2024.git
synced 2025-12-15 19:08:42 +00:00
7 lines
133 B
C++
7 lines
133 B
C++
#pragma once
|
|
|
|
#include "Vec.hpp"
|
|
|
|
constexpr Veci WORLD_SIZE = {.x = 10000, .y = 10000};
|
|
|
|
constexpr double MIN_CONTROL_DISTANCE = 10;
|