Code cleaner results

This commit is contained in:
strongleong 2022-02-06 23:51:12 +11:00
parent b6fe3b8ee5
commit f6a7037dbc
3 changed files with 6 additions and 13 deletions

View File

@ -1,15 +1,11 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows;
namespace ScrapModLoader {
namespace ScrapModLoader
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application {
public partial class App : Application
{
}
}

View File

@ -163,7 +163,7 @@ namespace ScrapModLoader
if (Windowed.IsChecked ?? false)
args = "-fullscreen:0";
String gamePath = modsLauncher.SelectedGameVersion == "1.0" ?
String gamePath = modsLauncher.SelectedGameVersion == "1.0" ?
modsLauncher.ScraplandPath : modsLauncher.ScraplandRemasteredPath;
Process.Start(gamePath + @"\bin\Scrap.exe", args);

View File

@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.IO;
using Microsoft.Win32;
namespace ScrapModLoader
{