5using Group = std::size_t;
6using Team = std::size_t;
8constexpr int CHARACTER_COUNT = 4;
10constexpr std::size_t MAX_COMPONENTS = 32;
11constexpr std::size_t MAX_GROUPS = 32;
12constexpr std::size_t MAX_STATS = 8;
13constexpr std::size_t MAX_TEAMS = 8;
15constexpr int SCREEN_SIZE_HEIGHT = 640;
16constexpr int SCREEN_SIZE_WIDTH = 800;
18constexpr int FPS = 60;
20constexpr int TILE_SIZE = 32;
22constexpr int MAP_SIZE_X = 25;
23constexpr int MAP_SIZE_Y = 20;
25constexpr int SPAWN_ATTEMPTS = 20;
27constexpr int BUFF_DURATION = 240;
29constexpr int BUFF_VALUE = 1;