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

8 lines
214 B
Kotlin
Raw Normal View History

2022-04-08 09:35:14 +02:00
package org.schabi.newpipe.player.gesture
interface DoubleTapListener {
2022-07-09 17:50:12 +02:00
fun onDoubleTapStarted(portion: DisplayPortion)
fun onDoubleTapProgressDown(portion: DisplayPortion)
fun onDoubleTapFinished()
}