diff options
author | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2019-11-03 22:46:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-03 22:46:38 -0800 |
commit | 3f4fbaa4528cb152119d66b713812373411851f3 (patch) | |
tree | 5df0000186eb406b191641423b569c2dd0017cb6 | |
parent | c99b6df4e49a75c79816b648ce9ec5ef43cd7e7d (diff) | |
download | KotlinForForge-3f4fbaa4528cb152119d66b713812373411851f3.tar.gz KotlinForForge-3f4fbaa4528cb152119d66b713812373411851f3.tar.bz2 KotlinForForge-3f4fbaa4528cb152119d66b713812373411851f3.zip |
Update README.md
-rw-r--r-- | README.md | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -1,2 +1,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. |