

Princ
📚 BRIEF EXPLANATION
This is a particularly unique library for Minecraft mods, created exclusively for my personal needs to optimize and simplify the codebase. While originally intended only for my own use, you can try it if you understand the technical specifics. Interesting fact: the development used Mojang's official mapping system (Mojang Mappings) to achieve maximum compatibility.
🔧 INSTALLATION GUIDELINES
To connect the library to your project, make changes to the build.gradle
file:
repositories {
// ... your current repositories
maven {
url = "https://api.modrinth.com/maven"
}
}
Ensure the library version is current.
After that, add the dependency:
dependencies {
modImplementation "maven.modrinth:princ:version"
}