fix: Index in wrong package

This commit is contained in:
oSumAtrIX
2022-04-14 10:39:15 +02:00
parent 5119905955
commit 2f9360f57c

View File

@ -0,0 +1,28 @@
package app.revanced.patches
import app.revanced.patcher.patch.Patch
import app.revanced.patches.ad.VideoAdsPatch
import app.revanced.patches.interaction.EnableSeekbarTappingPatch
import app.revanced.patches.layout.*
import app.revanced.patches.misc.IntegrationsPatch
/**
* Index contains all the patches.
*/
@Suppress("Unused")
object Index {
/**
* Array of patches.
* New patches should be added to the array.
*/
val patches: Array<() -> Patch> = arrayOf(
::IntegrationsPatch,
::VideoAdsPatch,
::MinimizedPlaybackPatch,
::CreateButtonRemoverPatch,
::HideReelsPatch,
::HideSuggestionsPatch,
::OldQualityLayoutPatch,
::EnableSeekbarTappingPatch
)
}