implemented encrypted Tactics archives.

This commit is contained in:
morkt
2016-07-28 04:57:11 +04:00
parent 2f9964c166
commit c4fd78fb37
7 changed files with 292 additions and 11 deletions

View File

@@ -597,5 +597,29 @@ namespace GameRes.Formats.Properties {
this["NPKScheme"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string TacticsArcPassword {
get {
return ((string)(this["TacticsArcPassword"]));
}
set {
this["TacticsArcPassword"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string TacticsArcTitle {
get {
return ((string)(this["TacticsArcTitle"]));
}
set {
this["TacticsArcTitle"] = value;
}
}
}
}