0
0
mirror of https://github.com/Nimac0/SDL_Minigame synced 2026-01-12 15:53:42 +00:00
SDL_Minigame/include/Constants.h
ezveee 93b7262db7 Updated character selection screen
Added a backdrop, and changed the selection from being inline to 2 chickens per row.
+ fine tweaking the positions so they align with the background
2024-01-28 14:08:37 +01:00

21 lines
379 B
C++

#pragma once
#include <cstddef>
using Group = std::size_t;
constexpr int CHARACTER_COUNT = 4;
constexpr std::size_t MAX_COMPONENTS = 32;
constexpr std::size_t MAX_GROUPS = 32;
constexpr int SCREEN_SIZE_HEIGHT = 640;
constexpr int SCREEN_SIZE_WIDTH = 800;
constexpr int FPS = 60;
constexpr int TILE_SIZE = 32;
constexpr int MAP_SIZE_X = 25;
constexpr int MAP_SIZE_Y = 20;