build: Move subproject to root project

This commit is contained in:
oSumAtrIX
2023-10-14 19:18:57 +02:00
parent 4456031459
commit c38f0ef42a
85 changed files with 73 additions and 988 deletions

View File

@@ -0,0 +1,13 @@
package app.revanced.patcher.patch
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
/**
* A ReVanced [Patch] that works on [BytecodeContext].
*
* @param fingerprints A list of [MethodFingerprint]s which will be resolved before the patch is executed.
*/
abstract class BytecodePatch(
internal val fingerprints : Set<MethodFingerprint> = emptySet(),
) : Patch<BytecodeContext>()