Library for making for cross-platform mod developing easier.
Add the following maven repository to your project:
repositories {
maven {
url 'https://repo.repsy.io/mvn/lucraft/threetag'
}
}
Then in your dedicated modules, replace <VERSION>
with the version of the lib you want to use:
dependencies {
modApi "net.threetag:PalladiumCore:<VERSION>"
}
dependencies {
modApi "net.threetag:PalladiumCore-fabric:<VERSION>"
include "net.threetag:PalladiumCore-fabric:<VERSION>"
}
dependencies {
modApi "net.threetag:PalladiumCore-forge:<VERSION>"
include "net.threetag:PalladiumCore-forge:<VERSION>"
}