mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 16:30:31 +05:30
12 lines
144 B
Kotlin
12 lines
144 B
Kotlin
package com.github.libretube.enums
|
|
|
|
enum class PlayerEvent {
|
|
Pause,
|
|
Play,
|
|
Forward,
|
|
Rewind,
|
|
Next,
|
|
Prev,
|
|
Background
|
|
}
|