mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
17 lines
260 B
Kotlin
17 lines
260 B
Kotlin
package com.github.libretube.interfaces
|
|
|
|
interface PlayerOptionsInterface {
|
|
|
|
fun onAutoplayClicked()
|
|
|
|
fun onCaptionClicked()
|
|
|
|
fun onQualityClicked()
|
|
|
|
fun onPlaybackSpeedClicked()
|
|
|
|
fun onAspectRatioClicked()
|
|
|
|
fun onRepeatModeClicked()
|
|
}
|