1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-28 08:03:20 +00:00
NewPipe/app/src/main/java/org/schabi/newpipe/player/gesture/DoubleTapListener.kt
2022-07-13 23:33:18 +02:00

8 lines
214 B
Kotlin

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