diff --git a/Wabbajack.Common/GameMetaData.cs b/Wabbajack.Common/GameMetaData.cs index 192df22f..90f71e5a 100644 --- a/Wabbajack.Common/GameMetaData.cs +++ b/Wabbajack.Common/GameMetaData.cs @@ -55,7 +55,9 @@ namespace Wabbajack.Common [Description("Kerbal Space Program")] KerbalSpaceProgram, [Description("Enderal Special Edition")] - EnderalSpecialEdition + EnderalSpecialEdition, + [Description("Cyberpunk 2077")] + Cyberpunk2077 } public static class GameExtensions @@ -662,6 +664,23 @@ namespace Wabbajack.Common }, MainExecutable = @"KSP_x64.exe" } + }, + { + Game.Cyberpunk2077, new GameMetaData + { + Game = Game.Cyberpunk2077, + SteamIDs = new[] {1091500}, + GOGIDs = new [] {2093619782}, + MO2Name = "Cyberpunk 2077", + NexusName = "cyberpunk2077", + NexusGameId = 3333, + IsGenericMO2Plugin = true, + RequiredFiles = new[] + { + @"REDprelauncher.exe".ToRelativePath() + }, + MainExecutable = @"REDprelauncher.exe".ToRelativePath() + } } };