Practical Tools for Simple Design
Loading...
Searching...
No Matches
config.hpp
1#ifndef CONFIG_H
2#define CONFIG_H
3
4#include "pch.hpp" // IWYU pragma: export
5
6#include "Util/Logger.hpp"
7
8constexpr const char *TITLE = "Practical Tools for Simple Design";
9
10constexpr int WINDOW_POS_X = SDL_WINDOWPOS_UNDEFINED;
11constexpr int WINDOW_POS_Y = SDL_WINDOWPOS_UNDEFINED;
12
13constexpr unsigned int WINDOW_WIDTH = 1280;
14constexpr unsigned int WINDOW_HEIGHT = 720;
15
16constexpr Util::Logger::Level DEFAULT_LOG_LEVEL = Util::Logger::Level::DEBUG;
17
23constexpr unsigned int FPS_CAP = 60;
24
25#endif