misc: chore: Move the LDN constants into a SharedConstants class

This commit is contained in:
Evan Husted 2025-02-20 19:30:00 -06:00
parent c47448628c
commit 6c6580ddcc
7 changed files with 41 additions and 33 deletions

View file

@ -0,0 +1,9 @@
namespace Ryujinx.Common
{
public static class SharedConstants
{
public const string DefaultLanPlayHost = "ryuldn.vudjun.com";
public const short LanPlayPort = 30456;
public const string DefaultLanPlayWebHost = "ryuldnweb.vudjun.com";
}
}