LobbyServer/LobbyServerDto/ValidGameGuids.cs

10 lines
240 B
C#

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