diff --git a/include/wv/app/App.h b/include/wv/app/App.h index c410361..508fd54 100644 --- a/include/wv/app/App.h +++ b/include/wv/app/App.h @@ -2,6 +2,10 @@ namespace WillowVox { + extern const char* appWindowName; + extern int appDefaultWindowX; + extern int appDefaultWindowY; + class App { public: diff --git a/src/app/App.cpp b/src/app/App.cpp index b5afb11..b9158f0 100644 --- a/src/app/App.cpp +++ b/src/app/App.cpp @@ -16,7 +16,7 @@ namespace WillowVox Logger::Log("Using WillowVox Engine"); Renderer::Init(); - Window::InitWindow(1280, 720, "WillowVox Engine"); + Window::InitWindow(appDefaultWindowX, appDefaultWindowY, appWindowName); auto& window = Window::GetInstance(); window.SetBackgroundColor(0.1f, 0.1f, 0.1f, 1.0f);