VEGO-Engine  0.1
Loading...
Searching...
No Matches
Constants.h
1#pragma once
2
3#include <cstddef>
4
5using Group = std::size_t;
6
7constexpr int CHARACTER_COUNT = 4;
8
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;
13
14constexpr int FPS = 60;
15
16constexpr int TILE_SIZE = 32;
17
18constexpr int MAP_SIZE_X = 25;
19constexpr int MAP_SIZE_Y = 20;
20
21constexpr int SPAWN_ATTEMPTS = 20;
22
23constexpr int PLAY_LOOPED = -1;
24constexpr int PLAY_ONCE = 0;
25
26constexpr int MAX_VOLUME = 128;
27