forked from zombieb/undead-universal-patch-il2cpp
backend refactor yay!!! 1.4.0
This commit is contained in:
91
Core/Config.cs
Normal file
91
Core/Config.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using System;
|
||||
using BepInEx.Configuration;
|
||||
|
||||
namespace undead_universal_patch_il2cpp.Core
|
||||
{
|
||||
public static class GenericConfig
|
||||
{
|
||||
public static ConfigEntry<bool> PatchDebug;
|
||||
public static ConfigEntry<bool> LogAllRequests;
|
||||
public static ConfigEntry<bool> CertificatePatch;
|
||||
public static ConfigEntry<bool> HilePatch;
|
||||
public static ConfigEntry<bool> SignalRHandshakeFix;
|
||||
public static ConfigEntry<bool> ImageSignaturePatch;
|
||||
public static ConfigEntry<bool> RegistrationPatch;
|
||||
}
|
||||
public static class GenericConfigDefaults
|
||||
{
|
||||
public static bool PatchDebug = false;
|
||||
public static bool LogAllRequests = false;
|
||||
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 class AssetChangesConfig
|
||||
{
|
||||
public static ConfigEntry<bool> AGRoomChanges;
|
||||
}
|
||||
public static class AssetChangesConfigDefaults
|
||||
{
|
||||
public static bool AGRoomChanges = false;
|
||||
}
|
||||
public static class GameManagerConfig
|
||||
{
|
||||
public static ConfigEntry<bool> StaticGameTeamConfig;
|
||||
public static ConfigEntry<bool> AnyGameFreeSpawn;
|
||||
}
|
||||
public static class GameManagerConfigDefaults
|
||||
{
|
||||
public static bool StaticGameTeamConfig;
|
||||
public static bool AnyGameFreeSpawn;
|
||||
}
|
||||
public static class NameserverConfig
|
||||
{
|
||||
public static ConfigEntry<bool> Rewrite;
|
||||
public static ConfigEntry<string> 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<bool> PatchPhotonIds;
|
||||
public static ConfigEntry<bool> PunLogging;
|
||||
public static ConfigEntry<bool> SelfHosted;
|
||||
public static ConfigEntry<string> AppID;
|
||||
public static ConfigEntry<string> VoiceAppID;
|
||||
public static ConfigEntry<string> ServerAddress;
|
||||
public static ConfigEntry<int> ServerPort;
|
||||
}
|
||||
public static class PhotonConfigDefaults
|
||||
{
|
||||
public static bool PatchPhotonIds = false;
|
||||
public static bool PunLogging = false;
|
||||
public static bool SelfHosted = false;
|
||||
public static string AppID = "replace-me-please";
|
||||
public static string VoiceAppID = "replace-me-please";
|
||||
public static string ServerAddress = "127.0.0.1";
|
||||
public static int ServerPort = 5055;
|
||||
}
|
||||
|
||||
public static class GalvanicConfig
|
||||
{
|
||||
public static ConfigEntry<bool> Enabled;
|
||||
public static ConfigEntry<bool> RegenerateKeypair;
|
||||
public static ConfigEntry<string> Export;
|
||||
public static ConfigEntry<bool> Import;
|
||||
}
|
||||
|
||||
public static class GalvanicConfigDefaults
|
||||
{
|
||||
public static bool Enabled = false;
|
||||
public static bool RegenerateKeypair = false;
|
||||
public static string Export = "IDoNotWantToExportMyKeys";
|
||||
public static bool Import = false;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user