implemented Selene 'KCAP' archive format.

This commit is contained in:
morkt
2015-03-11 16:37:51 +04:00
parent 520e7215ba
commit 7580d36414
11 changed files with 413 additions and 2 deletions

View File

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