2022-09-22 03:59:50 +07:00
|
|
|
package app.revanced.tiktok.settingsmenu;
|
|
|
|
|
|
|
|
public class SettingsStatus {
|
|
|
|
public static boolean feedFilter = false;
|
2022-09-23 12:39:44 +07:00
|
|
|
public static boolean download = false;
|
2022-11-25 17:19:49 +07:00
|
|
|
public static boolean simSpoof = false;
|
2022-09-23 12:39:44 +07:00
|
|
|
|
2022-09-22 03:59:50 +07:00
|
|
|
public static void enableFeedFilter() {
|
|
|
|
feedFilter = true;
|
|
|
|
}
|
2022-09-23 12:39:44 +07:00
|
|
|
|
|
|
|
public static void enableDownload() {
|
|
|
|
download = true;
|
|
|
|
}
|
|
|
|
|
2022-11-25 17:19:49 +07:00
|
|
|
public static void enableSimSpoof() {
|
|
|
|
simSpoof = true;
|
|
|
|
}
|
|
|
|
|
2022-09-22 03:59:50 +07:00
|
|
|
public static void load() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|