From 3f4fbaa4528cb152119d66b713812373411851f3 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Sun, 3 Nov 2019 22:46:38 -0800 Subject: Update README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 6cd4864..a31245d 100644 --- a/README.md +++ b/README.md @@ -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. -- cgit