Skip to content
vini2003 edited this page Jun 11, 2020 · 12 revisions

Introduction

A powerful, customizable and extensible interface library.

Spinnery is a modern, powerful, customizable and extensible interface library for Minecraft. Written in Java, it features fully customizable themes and widgets, with events for all sorts of actions - all of which you can use.

Join our Discord here!

How do I use it?

Spinnery is hosted on Bintray, where you can find the latests releases for it. To use it with Gradle, you must first:

  • Add it to your repositores:
repositories {
	maven {
		name = "Spinnery"
		url "https://dl.bintray.com/spinnery/Spinnery"
	}
}
  • Add it to your dependencies:
dependencies {
	modCompile "com.github.vini2003:spinnery:${project.spinnery_version}"
	include "com.github.vini2003:spinnery:${project.spinnery_version}"
}
  • Add spinnery_version to your gradle.properties:
	spinnery_version = X.X.X+fabric-Y

With that done, you may now use Spinnery for whatever you desire!

Clone this wiki locally