Immediate Code Cleanup

This commit is contained in:
2025-08-17 10:58:06 +02:00
parent 56bdc61cc4
commit e591aaba45
8 changed files with 679 additions and 22 deletions

View File

@ -1,5 +1,6 @@
#pragma once
#include "Config.h"
#include <memory>
#include <string>
@ -73,7 +74,7 @@ private:
uint64_t m_lastFrameTime = 0;
// Configuration
int m_windowWidth = 1200;
int m_windowHeight = 1000;
std::string m_windowTitle = "Tetris (SDL3)";
int m_windowWidth = Config::Window::DEFAULT_WIDTH;
int m_windowHeight = Config::Window::DEFAULT_HEIGHT;
std::string m_windowTitle = Config::Window::DEFAULT_TITLE;
};