revanced-patcher/src/main/kotlin/net/revanced/patcher/cache/PatchData.kt

10 lines
193 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
)