using BepInEx.Configuration; namespace undead_universal_patch_il2cpp.Core.Config { public static class GenericConfig { public static ConfigEntry PatchDebug; public static ConfigEntry LogAllRequests; public static ConfigEntry VerboseRequestLogs; } public static class GenericConfigDefaults { public static bool PatchDebug = false; public static bool LogAllRequests = false; public static bool VerboseRequestLogs = false; } public static class PatchConfig { public static ConfigEntry CertificatePatch; public static ConfigEntry HilePatch; public static ConfigEntry SignalRHandshakeFix; public static ConfigEntry ImageSignaturePatch; public static ConfigEntry RegistrationPatch; public static ConfigEntry AFKPatch; public static ConfigEntry RefreshTokenFix; } public static class PatchConfigDefaults { public static bool CertificatePatch = false; public static bool HilePatch = false; public static bool SignalRHandshakeFix = false; public static bool ImageSignaturePatch = false; public static bool RegistrationPatch = false; public static bool AFKPatch = false; public static bool RefreshTokenFix = false; } public static class ServerPatchesConfig { public static ConfigEntry CustomEmotes; public static ConfigEntry CustomPhoton; public static ConfigEntry CustomMarquee; public static ConfigEntry CustomKnownDlls; public static ConfigEntry CustomGameConfigurations; } public static class ServerPatchesConfigDefaults { public static bool CustomEmotes = false; public static bool CustomPhoton = false; public static bool CustomMarquee = false; public static bool CustomKnownDlls = false; public static bool CustomGameConfigurations = false; } public static class GameManagerConfig { public static ConfigEntry StaticGameConfig; public static ConfigEntry AnyGameFreeSpawn; } public static class GameManagerConfigDefaults { public static bool StaticGameConfig; public static bool AnyGameFreeSpawn; } 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 PunLogging; public static ConfigEntry AppID; public static ConfigEntry VoiceAppID; public static ConfigEntry SelfHosted; public static ConfigEntry ServerAddress; public static ConfigEntry ServerPort; public static ConfigEntry ConnectionProtocol; } public static class PhotonConfigDefaults { public static bool PatchPhotonIds = false; public static bool PunLogging = false; public static string AppID = "replace-me-please"; public static string VoiceAppID = "replace-me-please"; public static bool SelfHosted = false; public static string ServerAddress = "127.0.0.1"; public static int ServerPort = 5055; public static byte ConnectionProtocol = 0; } }