5using Group = std::size_t;
7constexpr int CHARACTER_COUNT = 4;
9constexpr std::size_t MAX_COMPONENTS = 32;
10constexpr std::size_t MAX_GROUPS = 32;
11constexpr std::size_t MAX_STATS = 8;
12constexpr std::size_t MAX_TEAMS = 8;
14constexpr int FPS = 60;
16constexpr int TILE_SIZE = 32;
18constexpr int MAP_SIZE_X = 25;
19constexpr int MAP_SIZE_Y = 20;
21constexpr int SPAWN_ATTEMPTS = 20;
23constexpr int PLAY_LOOPED = -1;
24constexpr int PLAY_ONCE = 0;
26constexpr int MAX_VOLUME = 128;