I've started needing to reuse some of my modding code, so now I need a library I guess.
The library is license GNU-LGPL, so feel free to use it and package it with a mod. Though I have no idea why anyone would want to.
Add to your build.gradle
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
modImplementation "com.github.provismet:lilylib:${project.lilylib_version}"
include "com.github.provismet:lilylib:${project.lilylib_version}"
}
Where ${project.lilylib_version}
can either be replaced with a release tag, or you can define a lilylib_version
parameter in your gradle.properties file.
Check the Jitpack.io page for working builds.