Skip to content

Commit

Permalink
Add tools paths check
Browse files Browse the repository at this point in the history
  • Loading branch information
Chloé committed Aug 15, 2023
1 parent ab33a0b commit b164a87
Show file tree
Hide file tree
Showing 19 changed files with 811 additions and 827 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified src/WiiUCafeSDKDeluxe/.vs/WiiUCafeSDKDeluxe/v17/.suo
Binary file not shown.
27 changes: 14 additions & 13 deletions src/WiiUCafeSDKDeluxe/WiiUCafeSDKDeluxe/ApplicationOptions.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace WiiUCafeSDKDeluxe
{
internal class ApplicationOptions
{
public static readonly string[] supportedUnityVersions = new string[3] { "Not Specified", "2017.1.2p3", "Other Verion" };
public static readonly string[] wiiUHardwares = new string[5] { "Wii U Deluxe Set", "Wii U Basic Set", "CAT-DEV", "CAT-R", "Wii U CAT-DEV + CAT-R" };
public static readonly string defaultPythonPath = @"C:\Program Files (x86)\Python38-32\python.exe";
public static readonly string defaultJavaPath = @"C:\Program Files\Java\jdk-18.0.2.1\bin\java.exe";
}
internal class ApplicationOptions
{
public static readonly string[] supportedUnityVersions = new string[3] { "Not Specified", "2017.1.2p3", "Other Verion" };

public static readonly string[] wiiUHardwares = new string[5] { "Wii U Deluxe Set", "Wii U Basic Set", "CAT-DEV", "CAT-R", "Wii U CAT-DEV + CAT-R" };

public static readonly string defaultPythonPath = "C:\\Program Files\\Python37\\python.exe";

public static readonly string defaultJavaPath = "C:\\Program Files\\Java\\jdk-18.0.2.1\\bin\\java.exe";

public static readonly string defaultJavaSha256 = "2faa5c83dc5ca3483b20d4b475a2e6491f1f2a0942a773d92c664fd794c25a5f";

public static readonly string defaultPythonSha256 = "5da31132fd6a415e71e3fd40c3a23853a799b91ea2821d2bcbf1bf0e8fa01e16";
}
}
Loading

0 comments on commit b164a87

Please sign in to comment.