mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-23 00:31:11 +01:00
11 lines
230 B
Java
11 lines
230 B
Java
package app.revanced.twitch.patches;
|
|
|
|
|
|
import app.revanced.twitch.settings.SettingsEnum;
|
|
|
|
public class DebugModePatch {
|
|
public static boolean isDebugModeEnabled() {
|
|
return SettingsEnum.DEBUG_MODE.getBoolean();
|
|
}
|
|
}
|