Tyro/src/settings/Config.h
2016-01-13 09:29:09 -05:00

15 lines
226 B
C++

#pragma once
#include "src/common.h"
class TyroConfig {
public:
TyroConfig();
~TyroConfig();
JsonValue GetRoot();
void LoadJson(const char json[]);
private:
JsonValue default_root;
JsonReader reader;
};