mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-22 20:51:12 +01:00
24 lines
517 B
Java
24 lines
517 B
Java
package app.revanced.tiktok.settingsmenu;
|
|
|
|
public class SettingsStatus {
|
|
public static boolean feedFilterEnabled = false;
|
|
public static boolean downloadEnabled = false;
|
|
public static boolean simSpoofEnabled = false;
|
|
|
|
public static void enableFeedFilter() {
|
|
feedFilterEnabled = true;
|
|
}
|
|
|
|
public static void enableDownload() {
|
|
downloadEnabled = true;
|
|
}
|
|
|
|
public static void enableSimSpoof() {
|
|
simSpoofEnabled = true;
|
|
}
|
|
|
|
public static void load() {
|
|
|
|
}
|
|
}
|