mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-05-11 08:01:06 +00:00
19 lines
794 B
C#
19 lines
794 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/projects/Ryubing/wiki/FAQ-%26-Troubleshooting";
|
|
|
|
public const string SetupGuideWikiUrl =
|
|
"https://git.ryujinx.app/projects/Ryubing/wiki/Setup-%26-Configuration-Guide";
|
|
|
|
public const string MultiplayerWikiUrl =
|
|
"https://git.ryujinx.app/projects/Ryubing/wiki/Multiplayer-(LDN-Local-Wireless)-Guide";
|
|
}
|
|
}
|