-
-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Dylan Sperrer edited this page Jun 12, 2024
·
7 revisions
Welcome to the TaterLib wiki!
Interested in the project? Check out this wiki entry.
In general, it's suggested to use Gradle in multi-API projects, as most mod tooling is built around Gradle plugins.
repositories {
maven {
name = "NeuralNexus"
url = "https://maven.neuralnexus.dev/repository/releases/"
}
}
dependencies {
implementation "dev.neuralnexus:taterlib-api:<version>"
}
Q: "So wait, I can't instantiate any new objects?"
A: "Not at the moment, no. Though in the future I'll be planning on going with builder patterns that'll hopefully be able to fill the gap. (ItemStack#clone()
is a nasty workaround that I've been able to use to create "new" ItemStack
s of different size, but not of a different type)"
Follow this guide to get started working with cross-API and cross-version plugin/mods!