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 SCREEN_SIZE_HEIGHT = 640;
15constexpr int SCREEN_SIZE_WIDTH = 800;
17constexpr int FPS = 60;
19constexpr int TILE_SIZE = 32;
21constexpr int MAP_SIZE_X = 25;
22constexpr int MAP_SIZE_Y = 20;
24constexpr int SPAWN_ATTEMPTS = 20;
26constexpr int PLAY_LOOPED = -1;
27constexpr int PLAY_ONCE = 0;
29constexpr int MAX_VOLUME = 128;