-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.cs
43 lines (35 loc) · 914 Bytes
/
Config.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System.IO;
using CEM.Client;
using CEM.Utils;
namespace CEM {
/// <summary>
/// Configuration class
/// </summary>
internal class Config {
public CEMConfig CEM { get; private set; }
public Config() {
CEM = new CEMConfig();
}
#region Save & Load
private static readonly Json _json = new Json {SerializeFieldNames = true, Pretty = true};
/// <summary>
/// Saves a json config file
/// </summary>
/// <param name="file"></param>
public void Save(string file) {
File.WriteAllText(file, _json.ToJson(this));
}
/// <summary>
/// Loads a config from file
/// </summary>
/// <param name="file"></param>
/// <returns></returns>
public static Config Load(string file) {
return _json.ParseJson<Config>(File.ReadAllText(file));
}
#endregion
}
internal class CEMConfig {
public string GamePath;
}
}