mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-05-03 14:14:26 +02:00
16 lines
286 B
Kotlin
16 lines
286 B
Kotlin
package net.revanced.patcher.cache
|
|
|
|
import org.objectweb.asm.tree.ClassNode
|
|
import org.objectweb.asm.tree.MethodNode
|
|
|
|
data class PatchData(
|
|
val cls: ClassNode,
|
|
val method: MethodNode,
|
|
val sd: ScanData
|
|
)
|
|
|
|
data class ScanData(
|
|
val startIndex: Int,
|
|
val endIndex: Int
|
|
)
|