mirror of
https://github.com/Strongleong/ScrapModLoader.git
synced 2024-08-15 00:03:19 +00:00
Code cleaner results
This commit is contained in:
parent
b6fe3b8ee5
commit
f6a7037dbc
3 changed files with 6 additions and 13 deletions
|
@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Specialized;
|
||||
using System.IO;
|
||||
|
||||
using Microsoft.Win32;
|
||||
|
||||
namespace ScrapModLoader
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue