aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: a31245d01285505156217e1b0ba2c773f185957b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# KotlinForForge
Makes Kotlin forge-friendly.

To implement in your project, add the following to your build.gradle: 
```
repositories {
    maven {
        name = "kotlinforforge"
        url = "https://cdn.jsdelivr.net/gh/thedarkcolour/KotlinForForge@master/"
    }
}

dependencies {
    implementation 'thedarkcolour:kotlinforforge:0.1.14'
}
```
Then, in your mods.toml file, change modLoader to "kotlinforforge".

Currently, this mod allows you to have @Mod object declarations and @Mod.EventBusSubscriber declarations.