forked from zombieb/undead-universal-patch-il2cpp
base vs future configurable patches, add amplitude redirect and signalr handshake patches, galvanic corrosion support,
This commit is contained in:
19
Config.cs
19
Config.cs
@@ -1,4 +1,5 @@
|
||||
using BepInEx.Configuration;
|
||||
using System;
|
||||
using BepInEx.Configuration;
|
||||
|
||||
namespace undead_universal_patch_il2cpp
|
||||
{
|
||||
@@ -7,12 +8,16 @@ namespace undead_universal_patch_il2cpp
|
||||
public static ConfigEntry<bool> LogAllRequests;
|
||||
public static ConfigEntry<bool> CertificatePatch;
|
||||
public static ConfigEntry<bool> HilePatch;
|
||||
public static ConfigEntry<bool> AmplitudeRedirectPatch;
|
||||
public static ConfigEntry<bool> SignalRHandshakeFix;
|
||||
}
|
||||
public static class GenericConfigDefaults
|
||||
{
|
||||
public static bool LogAllRequests = false;
|
||||
public static bool CertificatePatch = false;
|
||||
public static bool HilePatch = false;
|
||||
public static bool AmplitudeRedirectPatch = true;
|
||||
public static bool SignalRHandshakeFix = true;
|
||||
}
|
||||
public static class NameserverConfig
|
||||
{
|
||||
@@ -36,4 +41,16 @@ namespace undead_universal_patch_il2cpp
|
||||
public static string AppID = "replace-me-please";
|
||||
public static string VoiceAppID = "replace-me-please";
|
||||
}
|
||||
|
||||
public static class GalvanicConfig
|
||||
{
|
||||
public static ConfigEntry<bool> Enabled;
|
||||
public static ConfigEntry<bool> RegenerateKeypair;
|
||||
}
|
||||
|
||||
public static class GalvanicConfigDefaults
|
||||
{
|
||||
public static bool Enabled = false;
|
||||
public static bool RegenerateKeypair = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user