Quickly pulled out some of the magic numbers but this isn't the ideal way to configure this stuff.

This commit is contained in:
Zed A. Shaw 2025-02-19 08:56:34 -05:00
parent e04c03b381
commit f2b7871d12
3 changed files with 25 additions and 12 deletions

View file

@ -1,6 +1,7 @@
#pragma once
#include <string>
#include "color.hpp"
constexpr const int TEXTURE_WIDTH=256;
constexpr const int TEXTURE_HEIGHT=256;
@ -15,6 +16,13 @@ constexpr const int FRAME_LIMIT=60;
constexpr const int NUM_SPRITES=1;
constexpr const int MAX_LOG_MESSAGES=17;
constexpr const int GUECS_PADDING = 3;
constexpr const int GUECS_BORDER_PX = 1;
constexpr const int GUECS_FONT_SIZE = 30;
const sf::Color GUECS_FILL_COLOR = ColorValue::DARK_MID;
const sf::Color GUECS_BG_COLOR = ColorValue::MID;
const sf::Color GUECS_BORDER_COLOR = ColorValue::MID;
#ifdef NDEBUG
constexpr const bool DEBUG_BUILD=false;
#else