-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chloé
committed
Aug 15, 2023
1 parent
ab33a0b
commit b164a87
Showing
19 changed files
with
811 additions
and
827 deletions.
There are no files selected for viewing
Binary file removed
BIN
-232 KB
...KDeluxe/.vs/WiiUCafeSDKDeluxe/FileContentIndex/27b3dad2-6bb7-4633-b852-c64ecc763bcd.vsidx
Binary file not shown.
Binary file added
BIN
+1.38 KB
...KDeluxe/.vs/WiiUCafeSDKDeluxe/FileContentIndex/5de671a3-5fb7-4dca-9760-ac391983ea7d.vsidx
Binary file not shown.
Binary file added
BIN
+237 KB
...KDeluxe/.vs/WiiUCafeSDKDeluxe/FileContentIndex/b381e77d-dd2f-4e94-a578-03dc47fe83b3.vsidx
Binary file not shown.
Binary file added
BIN
+236 KB
...KDeluxe/.vs/WiiUCafeSDKDeluxe/FileContentIndex/d14fdf16-e58d-4507-bb38-b81928dbf4ee.vsidx
Binary file not shown.
Binary file not shown.
27 changes: 14 additions & 13 deletions
27
src/WiiUCafeSDKDeluxe/WiiUCafeSDKDeluxe/ApplicationOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
} | ||
} |
Oops, something went wrong.