Working server selection and INI rewrite

This commit is contained in:
Chord 2017-03-19 15:46:03 -04:00
parent bf35d3aea1
commit 7dcfcf81c6
13 changed files with 301 additions and 77 deletions

View file

@ -108,5 +108,29 @@ namespace PSLauncher.Properties {
this["ServerList"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool GenerateClientINI {
get {
return ((bool)(this["GenerateClientINI"]));
}
set {
this["GenerateClientINI"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("0")]
public int ServerSelection {
get {
return ((int)(this["ServerSelection"]));
}
set {
this["ServerSelection"] = value;
}
}
}
}