(ISettingsManager): new public interface.

This commit is contained in:
morkt
2018-01-11 18:38:33 +04:00
parent c1a6c69145
commit 21f2529e97
5 changed files with 61 additions and 6 deletions

View File

@@ -34,5 +34,17 @@ namespace GameRes.Properties {
this["BMPEnableExtensions"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool UpgradeRequired {
get {
return ((bool)(this["UpgradeRequired"]));
}
set {
this["UpgradeRequired"] = value;
}
}
}
}