diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:35:31 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:35:31 -0400 |
commit | 5fa8ec8586e3c9087fd68129e1b7d7f94e847a09 (patch) | |
tree | 451946789bd3fc0b79a80b5b3007d26c2159f428 /src/config.cpp | |
parent | 00da4d690af08d45788d770f9aadc9548438f074 (diff) |
begin config usage; text positioning
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp index 85cc413..c70546c 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -22,9 +22,14 @@ #include <cereal/cereal.hpp> #include <cereal/archives/json.hpp> +#include <filesystem> #include <fstream> -std::map<std::string, std::variant<int, double, std::string>> Config::values; +std::map<std::string, std::variant<int, double, std::string>> Config::values = { + { "title", "gamedev2" }, + { "screenWidth", 640 }, + { "screenHeight", 480 } +}; void Config::save(void) { |