Minecraft Version 1.19.2
needle is a library to ease the development of Minecraft Mods in
the Fabric environment. It takes some of its core ideas from my other
(related) project scalacore,
but with some newer syntactic sugar, a little less clutter, and no Forge.
To use in modding you'll need to add my Maven repository to your repo list
in build.gradle:
repositories {
maven {
name = "jtrim777"
url = "https://maven.jtrim777.dev/releases"
}
}
dependencies {
modImplementation "dev.jtrim777:needle:${project.needle_version}"
}In gradle.properties you can set needle_version to the latest
version of this library (see the badge at the top of this README).