mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-09-11 04:18:16 +00:00
This window can be accessed via "Help" menu in the title bar. This menu's data is synced with the in-app-list LDN game data, and that has been modified to hide unjoinable games (in-progress and/or private (needing a passphrase)). You can still see these games in the list.
20 lines
796 B
C#
20 lines
796 B
C#
namespace Ryujinx.Common
|
|
{
|
|
public static class SharedConstants
|
|
{
|
|
public const string DefaultLanPlayHost = "ldn.ryujinx.app";
|
|
public const short LanPlayPort = 30456;
|
|
public const string DefaultLanPlayWebHost = DefaultLanPlayHost;
|
|
|
|
public const string AmiiboTagsUrl = "https://raw.githubusercontent.com/Ryubing/Nfc/refs/heads/main/tags.json";
|
|
|
|
public const string FaqWikiUrl = "https://git.ryujinx.app/ryubing/ryujinx/-/wikis/FAQ-&-Troubleshooting";
|
|
|
|
public const string SetupGuideWikiUrl =
|
|
"https://git.ryujinx.app/ryubing/ryujinx/-/wikis/Setup-&-Configuration-Guide";
|
|
|
|
public const string MultiplayerWikiUrl =
|
|
"https://git.ryujinx.app/ryubing/ryujinx/-/wikis/Multiplayer-(LDN-Local-Wireless)-Guide";
|
|
}
|
|
}
|