mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-22 05:21:12 +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();
|
|
}
|
|
}
|