Added server selection form

This commit is contained in:
Chord 2017-03-19 11:20:57 -04:00
parent 4320354a35
commit bf35d3aea1
9 changed files with 685 additions and 10 deletions

View file

@ -82,5 +82,31 @@ namespace PSLauncher.Properties {
this["ClearOutputOnLaunch"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool CoreCombat {
get {
return ((bool)(this["CoreCombat"]));
}
set {
this["CoreCombat"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("<?xml version=\"1.0\" encoding=\"utf-16\"?>\r\n<ArrayOfString xmlns:xsi=\"http://www.w3." +
"org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n <s" +
"tring>PSForever,play.psforever.net,51000</string>\r\n</ArrayOfString>")]
public global::System.Collections.Specialized.StringCollection ServerList {
get {
return ((global::System.Collections.Specialized.StringCollection)(this["ServerList"]));
}
set {
this["ServerList"] = value;
}
}
}
}

View file

@ -17,5 +17,14 @@
<Setting Name="ClearOutputOnLaunch" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="CoreCombat" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="ServerList" Type="System.Collections.Specialized.StringCollection" Scope="User">
<Value Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;string&gt;PSForever,play.psforever.net,51000&lt;/string&gt;
&lt;/ArrayOfString&gt;</Value>
</Setting>
</Settings>
</SettingsFile>