fix: remove GetConfig lol

This commit is contained in:
Dexrn ZacAttack
2026-01-23 18:10:33 -08:00
parent 052e4e200b
commit 8ff1d09bad
2 changed files with 2 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 4.0)
project(WinDurango.Common VERSION 1.0.0)
set(VERSION_SUFFIX "-dev.1") # used for non-stable versions, otherwise blank
set(VERSION_SUFFIX "-dev.2") # used for non-stable versions, otherwise blank
set(CMAKE_CXX_STANDARD 17)

View File

@@ -13,9 +13,7 @@ namespace wd::common {
WinDurango();
Config &GetConfig();
private:
Config _config;
Config Config;
};
}