The next little game in the series where I make a fancy rogue game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roguish/config.hpp

21 lines
441 B

#pragma once
#include <nlohmann/json.hpp>
#include <fstream>
#include <codecvt>
using namespace nlohmann;
struct Config {
json $config;
std::string $src_path = "./config.json";
Config(const std::string src_path);
Config(json config, std::string src_path)
: $config(config), $src_path(src_path) {}
json &operator[](const std::string &key);
std::wstring wstring(const std::string main_key, const std::string sub_key);
};