Add Cyberpunk 2077 Support

This commit is contained in:
ixanza 2021-11-27 16:21:11 +08:00 committed by GitHub
parent ef3a18b174
commit 9d95abd3e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -399,6 +399,22 @@ public static class GameRegistry
},
MainExecutable = @"tModLoader.exe".ToRelativePath()
}
},
{
Game.CyberPunk2077, new GameMetaData
{
Game = Game.Cyberpunk2077,
SteamIDs = new[] {1091500},
MO2Name = "Cyberpunk 2077",
NexusName = "cyberpunk2077",
NexusGameId = 3333,
IsGenericMO2Plugin = true,
RequiredFiles = new[]
{
@"REDprelauncher.exe".ToRelativePath()
},
MainExecutable = @"REDprelauncher.exe".ToRelativePath()
}
}
};
@ -478,4 +494,4 @@ public static class GameRegistry
{
return Games[game];
}
}
}