diff --git a/src/main/kotlin/net/revanced/patches/Index.kt b/src/main/kotlin/net/revanced/patches/Index.kt index 84af57f93..7ecd9cfcb 100644 --- a/src/main/kotlin/net/revanced/patches/Index.kt +++ b/src/main/kotlin/net/revanced/patches/Index.kt @@ -1,13 +1,21 @@ package net.revanced.patches +import net.revanced.patcher.patch.Patch import net.revanced.patches.ads.VideoAds import net.revanced.patches.layouts.CreateButtonRemover import net.revanced.patches.layouts.MinimizedPlayback +import kotlin.reflect.KClass -// This object contains all the patches and should be imported when using this library +/** + * Index contains all the patches and should be imported when using this library. + */ +@Suppress("Unused") object Index { - // Array of patches. New patches should be added to the array - val patches = arrayOf( + /** + * Array of patches. + * New patches should be added to the array. + */ + val patches: Array> = arrayOf( VideoAds::class, MinimizedPlayback::class, CreateButtonRemover::class