LibreTube/app/src/main/java/com/github/libretube/interfaces/PlayerOptionsInterface.kt
2022-08-12 14:03:55 +02:00

17 lines
260 B
Kotlin

package com.github.libretube.interfaces
interface PlayerOptionsInterface {
fun onAutoplayClicked()
fun onCaptionClicked()
fun onQualityClicked()
fun onPlaybackSpeedClicked()
fun onAspectRatioClicked()
fun onRepeatModeClicked()
}