mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-14 05:03:57 +08:00
18 lines
368 B
Dart
18 lines
368 B
Dart
import 'package:PiliPlus/utils/storage_pref.dart';
|
|
|
|
abstract final class GlobalData {
|
|
static int imgQuality = Pref.picQuality;
|
|
|
|
static num? coins;
|
|
|
|
static void afterCoin(num coin) {
|
|
if (coins != null) {
|
|
coins = coins! - coin;
|
|
}
|
|
}
|
|
|
|
static Set<int> blackMids = Pref.blackMids;
|
|
|
|
static bool dynamicsWaterfallFlow = Pref.dynamicsWaterfallFlow;
|
|
}
|