mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 16:46:22 +08:00
17 lines
232 B
Dart
17 lines
232 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);
|
|
}
|