A fabric library that abstracts Hypixel Housing's systems
SystemsAPI is a fabric library that abstracts Hypixel Housing's house systems for other mods to use. For an example implementation, see HTSL Reborn.
To use SystemsAPI in your mod, include the project in your maven/gradle project. Replace VERSION with the latest version, as shown in the Maven badge above (omit the V).
repositories {
maven {
name = "redstoneReleases"
url = uri("https://repo.redstone.llc/releases")
}
}
dependencies {
modImplementation("llc.redstone:SystemsAPI:VERSION")
}
<repositories>
<repository>
<id>redstone-releases</id>
<name>Redstone Releases</name>
<url>https://repo.redstone.llc/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>llc.redstone</groupId>
<artifactId>SystemsAPI</artifactId>
<version>VERSION</version>
</dependency>
</dependencies>