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