mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 00:10:32 +05:30
12 lines
148 B
Kotlin
12 lines
148 B
Kotlin
package com.github.libretube.enums
|
|
|
|
enum class PlayerEvent {
|
|
PlayPause,
|
|
Forward,
|
|
Rewind,
|
|
Next,
|
|
Prev,
|
|
Background,
|
|
Stop
|
|
}
|