Tyro/src/settings/Config.h

15 lines
232 B
C
Raw Normal View History

2016-01-13 09:29:09 -05:00
#pragma once
2015-07-07 10:01:17 -04:00
#include "src/common.h"
class TyroConfig {
public:
TyroConfig();
~TyroConfig();
Json::Value GetRoot();
2015-04-21 09:55:28 -04:00
void LoadJson(const char json[]);
private:
Json::Value default_root;
2019-06-04 14:57:38 -04:00
Json::Reader reader;
};