A lightweight minecraft library to add map icons and markers for fabric mod loader.
You can add the mod to your build.gradle file with 2 ways.
repositories {
// Your repositories...
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
}
dependencies {
// Your dependencies....
modApi "maven.modrinth:pinlib:<VERSION>"
}
See dependency scope to know the difference between modImplementation
, modApi
and include
.