mirror of https://github.com/deavminet/skippy.git
Added file read for config file
This commit is contained in:
parent
0282883427
commit
ad71724cb2
|
@ -172,6 +172,8 @@ void defaultConfig()
|
|||
JSONValue dserv;
|
||||
dserv["address"] = "127.0.0.1";
|
||||
dserv["port"] = "7777";
|
||||
// JSONValue[] joins = []
|
||||
// dserv["joins"] =
|
||||
serverBlock["dserv"] = dserv;
|
||||
|
||||
config["servers"] = serverBlock;
|
||||
|
@ -180,4 +182,10 @@ void defaultConfig()
|
|||
void loadConfig(string configPath)
|
||||
{
|
||||
/* TODO: Implement me */
|
||||
File file;
|
||||
file.open(configPath);
|
||||
|
||||
byte[] buffer;
|
||||
buffer.length = file.size();
|
||||
buffer = file.rawRead(buffer);
|
||||
}
|
Loading…
Reference in New Issue