using BepInEx.Configuration; namespace undead_universal_patch_il2cpp { public static class GenericConfig { public static ConfigEntry LogAllRequests; } public static class GenericConfigDefaults { public static bool LogAllRequests = false; } public static class NameserverConfig { public static ConfigEntry Rewrite; public static ConfigEntry NewUrl; } public static class NameserverConfigDefaults { public static bool Rewrite = false; public static string NewUrl = "https://example.com/nameserver"; } public static class PhotonConfig { public static ConfigEntry PatchPhotonIds; public static ConfigEntry AppID; public static ConfigEntry VoiceAppID; } public static class PhotonConfigDefaults { public static bool PatchPhotonIds = false; public static string AppID = "replace-me-please"; public static string VoiceAppID = "replace-me-please"; } }