Beispiel #1
0
        public void LoadConfig()
        {
            var configFile = SettingsExtensions.ReadFromJsonFile <Config>(Path.Combine(CONFIG_PATH, Name + ".json"));

            this.Name         = configFile.Name;
            this.AimbotConfig = configFile.AimbotConfig;
        }
Beispiel #2
0
 public Config(string name = "default")
 {
     Name         = name;
     AimbotConfig = new AimbotConfig();
 }