/Forgelin-Continuous

Stands with Kotlin!

Primary LanguageKotlinOtherNOASSERTION

Forgelin Continuous

Fork of Shadowfacts's Forgelin

Addition

This mod shades:

  • Reflect
  • Standard Library
  • Runtime Library
  • Coroutine
  • Serialization
    • Json Only

The list of version of bundled libraries is listed in GitHub Release.

Usages

For Gradle Groovy:

repositories {
  repositories {
    maven {
      url 'https://maven.cleanroommc.com'
    }
  }
}

dependencies {
  implementation 'io.github.chaosunity.forgelin:Forgelin-Continuous:2.0.20.0'
}

For Gradle Kotlin

repositories {
    maven {
        url = uri("https://maven.cleanroommc.com")
    }
}

dependencies {
  implementation("io.github.chaosunity.forgelin:Forgelin-Continuous:2.0.20.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 {
    // ...
}