using HarmonyLib; using System; using MIU; namespace ConsoleUnlocker.Patches { [HarmonyPatch(typeof(PlatformSetup), "GetDevIDs")] internal class PlatformSetupPatches { static void Postfix() { GlobalContext.Invoke(Array.Empty()); MIU.Console.Instance.gameObject.SetActive(true); } } }