/Spinnery

A Java-based GUI library for Minecraft.

Primary LanguageJavaGNU Lesser General Public License v3.0LGPL-3.0

Spinnery, ahoy!

Download

Spinnery

Spinnery is a modern, feature-complete GUI library for Minecraft 1.15 and 1.16, with a focus on making the GUI design and user experience significantly smoother and less nonsensic.

Setup

Firstly, add Spinnery's Bintray to your build.gradle's repositories:

	maven {
		name = "Spinnery"
		url  "https://dl.bintray.com/spinnery/Spinnery"
	}

Afterwards, add it to your project:

	// Spinnery
	modCompile "com.github.vini2003:spinnery:${project.spinnery_version}"
	include "com.github.vini2003:spinnery:${project.spinnery_version}"

As you may realize, that's using a variable defined in gradle.properties for the version:

# Mod Properties
 spinnery_version = VERSION

Once that's done, you're set!