9 lines
233 B
Java
Raw Normal View History

package app.revanced.twitch.patches;
import app.revanced.twitch.settings.SettingsEnum;
public class VideoAdsPatch {
public static boolean shouldBlockVideoAds() {
return SettingsEnum.BLOCK_VIDEO_ADS.getBoolean();
}
}