LobbyServer/LobbyServerDto/ValidGameGuids.cs

13 lines
311 B
C#

namespace LobbyServerDto
{
/// <summary>
/// List of accepted game ips
/// </summary>
public static class GameGuids
{
public static Guid NFS = new Guid("0572706f-0fd9-46a9-8ea6-5a31a5363442");
public static HashSet<Guid> ValidGuids = new HashSet<Guid>() { NFS };
}
}