mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
16 lines
228 B
Dart
16 lines
228 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);
|
|
}
|