Skip to content
This repository was archived by the owner on Jun 4, 2023. It is now read-only.

Latest commit

 

History

History
38 lines (31 loc) · 1.2 KB

File metadata and controls

38 lines (31 loc) · 1.2 KB

QuiltEnergy

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.

Using in mods

Repository and dependency

Repository

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")
        }
    }
}

Dependency

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