Merge pull request #1744 from ixanza/patch-2

Add Cyberpunk 2077 Support
This commit is contained in:
Timothy Baldridge 2021-11-27 18:30:50 -07:00 committed by GitHub
commit bb3b374375
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 3 deletions

View File

@ -41,5 +41,6 @@ public enum Game
[Description("Enderal Special Edition")]
EnderalSpecialEdition,
[Description("Terraria")] Terraria
}
[Description("Terraria")] Terraria,
[Description("Cyberpunk 2077")] Cyberpunk2077
}

View File

@ -399,6 +399,23 @@ public static class GameRegistry
},
MainExecutable = @"tModLoader.exe".ToRelativePath()
}
},
{
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()
}
}
};
@ -478,4 +495,4 @@ public static class GameRegistry
{
return Games[game];
}
}
}