NewPipe/app/src/main/java/org/schabi/newpipe/player/event/DoubleTapListener.kt

8 lines
221 B
Kotlin

package org.schabi.newpipe.player.event
interface DoubleTapListener {
fun onDoubleTapStarted(portion: DisplayPortion) {}
fun onDoubleTapProgressDown(portion: DisplayPortion) {}
fun onDoubleTapFinished() {}
}