Update Settings.cs

changed the position cuz yeah
This commit is contained in:
idkthegithub 2023-05-15 12:05:30 +02:00
parent 5dc4346424
commit bc83b08b04

View File

@ -15,6 +15,7 @@ namespace Bloxstrap.Models
public bool CheckForUpdates { get; set; } = true; public bool CheckForUpdates { get; set; } = true;
public bool CreateDesktopIcon { get; set; } = true; public bool CreateDesktopIcon { get; set; } = true;
public bool MultiInstanceLaunching { get; set; } = false; public bool MultiInstanceLaunching { get; set; } = false;
public bool RemoveRobloxText { get; set; } = false;
// channel configuration // channel configuration
public string Channel { get; set; } = RobloxDeployment.DefaultChannel; public string Channel { get; set; } = RobloxDeployment.DefaultChannel;
@ -31,6 +32,6 @@ namespace Bloxstrap.Models
public bool UseOldMouseCursor { get; set; } = false; public bool UseOldMouseCursor { get; set; } = false;
public bool UseDisableAppPatch { get; set; } = false; public bool UseDisableAppPatch { get; set; } = false;
public bool DisableFullscreenOptimizations { get; set; } = false; public bool DisableFullscreenOptimizations { get; set; } = false;
public bool RemoveRobloxText { get; set; } = false;
} }
} }