forked from xxdoc/NSEmuHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigFile.vb
More file actions
28 lines (20 loc) · 1.01 KB
/
Copy pathConfigFile.vb
File metadata and controls
28 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Public Class ConfigFilePattern
Public YuzuPath As String = "D:\Yuzu"
Public RyujinxPath As String = "D:\Ryujinx"
Public YuzuVersion As String = ""
Public RyujinxVersion As String = ""
Public YuzuFirmwareVersion As String = ""
Public RyujinxFirmwareVersion As String = ""
Public YuzuBranch As String = ""
Public RyujinxBranch As String = ""
Public YuzuDataFolder As String = ""
Public RyujinxDataFolder As String = ""
Public DownloadSource As String = "OneDrive"
Public ColorScheme As String = "IndigoLight"
Public GitHubAPIProxy As Boolean = True
'以下的配置不会在 GUI 中出现
Public CloudflareProxyPrefix As String = "https://rp.ydz1.gq/"
Public ModDownloadSource As String = "https://www.githubs.cn/raw-githubusercontent/wiki/yuzu-emu/yuzu/Switch-Mods.md"
Public TitleListSource As String = "https://www.githubs.cn/raw-githubusercontent/amakvana/YuzuModDownloader/main/assets/GameTitleIDs.xml"
Public SkipCheckMD5 As Boolean = False
End Class