Immediate Code Cleanup
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user