mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-04-30 22:54:34 +02:00
10 lines
256 B
Java
10 lines
256 B
Java
package app.revanced.integrations.patches;
|
|
|
|
import app.revanced.integrations.settings.SettingsEnum;
|
|
|
|
public class HideAutoplayButtonPatch {
|
|
public static boolean isButtonShown() {
|
|
return !SettingsEnum.HIDE_AUTOPLAY_BUTTON.getBoolean();
|
|
}
|
|
}
|