Tyro/src/settings/Config.h

15 lines
226 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();
JsonValue GetRoot();
2015-04-21 09:55:28 -04:00
void LoadJson(const char json[]);
private:
JsonValue default_root;
JsonReader reader;
};