28 lines
574 B
Kotlin
28 lines
574 B
Kotlin
|
package eu.kanade.tachiyomi.extension.en.arcrelight
|
||
|
|
||
|
import eu.kanade.tachiyomi.multisrc.mangadventure.MangAdventure
|
||
|
|
||
|
/** Arc-Relight source. */
|
||
|
class ArcRelight : MangAdventure(
|
||
|
"Arc-Relight",
|
||
|
"https://arc-relight.com",
|
||
|
listOf(
|
||
|
"4-Koma",
|
||
|
"Chaos;Head",
|
||
|
"Collection",
|
||
|
"Comedy",
|
||
|
"Drama",
|
||
|
"Jubilee",
|
||
|
"Mystery",
|
||
|
"Psychological",
|
||
|
"Robotics;Notes",
|
||
|
"Romance",
|
||
|
"Sci-Fi",
|
||
|
"Seinen",
|
||
|
"Shounen",
|
||
|
"Steins;Gate",
|
||
|
"Supernatural",
|
||
|
"Tragedy"
|
||
|
)
|
||
|
)
|