A Library mod to make an energy api for (Ender put "four" here ☠️) TeamVoided's mods
Quilt Energy is a Minecraft modding api (Not developed by the Quilt devs nor has any associations with them) that adds energy to game in a way that allows for multiple energy units.
Quilt Energy has extendable classes for making items that have energy as well as block entities.
Repository and dependency
repositories {
maven {
url = uri("https://maven.pkg.github.com/TeamVoided/QuiltEnergy")
credentials {
username = "GITHUB_USERNAME"
//feel free to replace "TOKEN" with whatever environment variable you might have your token saved in
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}dependencies {
modImplementation "team.voided:quilt_energy:VERSION"
// latest release is 1.2.1+1.19
}For details on generating a Personal Access Token visit The GitHub help page