Fork of Shadowfacts's Forgelin
This mod shades:
- Reflect
- Standard Library
- Runtime Library
- Coroutine
- Serialization
- Json Only
The list of version of bundled libraries is listed in GitHub Release.
repositories {
repositories {
maven {
url 'https://maven.cleanroommc.com'
}
}
}
dependencies {
implementation 'io.github.chaosunity.forgelin:Forgelin-Continuous:2.0.21.0'
}
repositories {
maven {
url = uri("https://maven.cleanroommc.com")
}
}
dependencies {
implementation("io.github.chaosunity.forgelin:Forgelin-Continuous:2.0.21.0")
}
Add this line to your mod annotation then you're done with basic settings!
@Mod(
modid = "modid",
name = "Mod Name",
version = "Mod version",
modLanguageAdapter = "io.github.chaosunity.forgelin.KotlinAdapter"
)
object ExampleMod {
// ...
}