forked from SubnauticaNitrox/Nitrox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameInfo.cs
33 lines (30 loc) · 969 Bytes
/
GameInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace NitroxModel
{
public sealed class GameInfo
{
public static readonly GameInfo Subnautica = new()
{
Name = "Subnautica",
FullName = "Subnautica",
ExeName = "Subnautica.exe",
SteamAppId = 264710,
MsStoreStartUrl = @"ms-xbl-38616e6e:\\"
};
public static readonly GameInfo SubnauticaBelowZero = new()
{
Name = "SubnauticaZero",
FullName = "Subnautica: Below Zero",
ExeName = "SubnauticaZero.exe",
SteamAppId = 848450,
MsStoreStartUrl = @"ms-xbl-6e27970f:\\"
};
public string Name { get; private set; }
public string FullName { get; private set; }
public string ExeName { get; private set; }
public int SteamAppId { get; private set; }
public string MsStoreStartUrl { get; private set; }
private GameInfo()
{
}
}
}