AxibugEmuOnline/AxibugEmuOnline.Client.Switch/Assets/Plugins/Essgee.Unity/AppEnvironment.cs
2025-08-20 10:25:32 +08:00

15 lines
497 B
C#

public static class AppEnvironment
{
#if DEBUG
public static readonly bool DebugMode = true;
#else
public static readonly bool DebugMode = false;
#endif
public static readonly bool EnableCustomUnhandledExceptionHandler = true;
public static readonly bool TemporaryDisableCustomExceptionForm = false;
public static readonly bool EnableLogger = false;
public static readonly bool EnableSuperSlowCPULogger = false;
public static readonly bool EnableOpenGLDebug = false;
}