Skip to content
Dylan Sperrer edited this page Jun 12, 2024 · 7 revisions

Welcome to the TaterLib wiki!

Interested in the project? Check out this wiki entry.

Getting Started

In general, it's suggested to use Gradle in multi-API projects, as most mod tooling is built around Gradle plugins.

Adding TaterLib as a Dependency

repositories {
    maven {
        name = "NeuralNexus"
        url = "https://maven.neuralnexus.dev/repository/releases/"
    }
}

dependencies {
    implementation "dev.neuralnexus:taterlib-api:<version>"
}

FAQ

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" ItemStacks of different size, but not of a different type)"

Getting Started

Follow this guide to get started working with cross-API and cross-version plugin/mods!