From 11bef18619994a134dcb4809c37d41219e3a9d84 Mon Sep 17 00:00:00 2001 From: Lexi Rose Date: Fri, 13 Oct 2023 12:49:16 -0500 Subject: [PATCH] Update AssemblyInfo.cs - Quest platform support Updated assembly defs so the game is recognized on Quest. --- SRModCore/Properties/AssemblyInfo.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SRModCore/Properties/AssemblyInfo.cs b/SRModCore/Properties/AssemblyInfo.cs index 7ca2112..1453bbc 100644 --- a/SRModCore/Properties/AssemblyInfo.cs +++ b/SRModCore/Properties/AssemblyInfo.cs @@ -14,4 +14,8 @@ [assembly: Guid("abcb1a59-660e-41b7-bcd8-f7f3ce0e45b5")] [assembly: MelonInfo(typeof(SRModCore.MainMod), "SR Mod Core", "2.0.0", "bookdude13", "https://github.com/bookdude13/SRModCore")] +#if QUEST +[assembly: MelonGame("kluge", "SynthRiders")] +#else [assembly: MelonGame("Kluge Interactive", "SynthRiders")] +#endif