10 lines
207 B
Kotlin
10 lines
207 B
Kotlin
package com.gh.common.iinterface
|
|
|
|
@Suppress("SpellCheckingInspection")
|
|
interface IOffsetable {
|
|
fun getOffset(position: Int): Int
|
|
|
|
fun updateOffset(position: Int, offset: Int)
|
|
|
|
fun resetOffset()
|
|
} |