mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-21 01:26:59 +08:00
19 lines
298 B
Dart
19 lines
298 B
Dart
enum PlaySpeed {
|
|
pointFive(0.5),
|
|
pointSevenFive(0.75),
|
|
|
|
one(1.0),
|
|
onePointTwoFive(1.25),
|
|
onePointFive(1.5),
|
|
onePointSevenFive(1.75),
|
|
|
|
two(2.0),
|
|
three(3.0),
|
|
;
|
|
|
|
final double value;
|
|
const PlaySpeed(this.value);
|
|
|
|
String get desc => value == 1.0 ? '正常' : value.toString();
|
|
}
|