Lucaskyy 8c56d15823
Finish tests, add InsnList.setAt, sr -> sd
Added some sweet explanation too.
2022-03-19 23:15:20 +01:00

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
)