mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 06:01:05 -05:00
+ Event editor render settings are saved + When an event type is not rendered, it can't be moved using direct clicks (prevents mistakes)
123 lines
4.6 KiB
C#
123 lines
4.6 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// Il codice è stato generato da uno strumento.
|
|
// Versione runtime:4.0.30319.42000
|
|
//
|
|
// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
|
|
// il codice viene rigenerato.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace DSPRE.Properties {
|
|
|
|
|
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.0.3.0")]
|
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
|
|
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
|
|
|
public static Settings Default {
|
|
get {
|
|
return defaultInstance;
|
|
}
|
|
}
|
|
|
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Configuration.DefaultSettingValueAttribute("2")]
|
|
public byte menuLayout {
|
|
get {
|
|
return ((byte)(this["menuLayout"]));
|
|
}
|
|
set {
|
|
this["menuLayout"] = value;
|
|
}
|
|
}
|
|
|
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Configuration.DefaultSettingValueAttribute("")]
|
|
public string lastColorTablePath {
|
|
get {
|
|
return ((string)(this["lastColorTablePath"]));
|
|
}
|
|
set {
|
|
this["lastColorTablePath"] = value;
|
|
}
|
|
}
|
|
|
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Configuration.DefaultSettingValueAttribute("False")]
|
|
public bool textEditorPreferHex {
|
|
get {
|
|
return ((bool)(this["textEditorPreferHex"]));
|
|
}
|
|
set {
|
|
this["textEditorPreferHex"] = value;
|
|
}
|
|
}
|
|
|
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Configuration.DefaultSettingValueAttribute("0")]
|
|
public int scriptEditorFormatPreference {
|
|
get {
|
|
return ((int)(this["scriptEditorFormatPreference"]));
|
|
}
|
|
set {
|
|
this["scriptEditorFormatPreference"] = value;
|
|
}
|
|
}
|
|
|
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Configuration.DefaultSettingValueAttribute("True")]
|
|
public bool renderSpawnables {
|
|
get {
|
|
return ((bool)(this["renderSpawnables"]));
|
|
}
|
|
set {
|
|
this["renderSpawnables"] = value;
|
|
}
|
|
}
|
|
|
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Configuration.DefaultSettingValueAttribute("True")]
|
|
public bool renderOverworlds {
|
|
get {
|
|
return ((bool)(this["renderOverworlds"]));
|
|
}
|
|
set {
|
|
this["renderOverworlds"] = value;
|
|
}
|
|
}
|
|
|
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Configuration.DefaultSettingValueAttribute("True")]
|
|
public bool renderWarps {
|
|
get {
|
|
return ((bool)(this["renderWarps"]));
|
|
}
|
|
set {
|
|
this["renderWarps"] = value;
|
|
}
|
|
}
|
|
|
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Configuration.DefaultSettingValueAttribute("True")]
|
|
public bool renderTriggers {
|
|
get {
|
|
return ((bool)(this["renderTriggers"]));
|
|
}
|
|
set {
|
|
this["renderTriggers"] = value;
|
|
}
|
|
}
|
|
}
|
|
}
|