LoomUI is a library designed to simplify the creation of gui for servers.
With LoomUI, developers can easily design dynamic menus, interfaces, and
interactive elements using Kotlin.
Usage
To start using LoomUI its dependency needs to be added to your build tool:
Maven
Code (Text):
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>sh.lumin</groupId>
<artifactId>loomui</artifactId>
<version>1.0.2</version>
</dependency>
Gradle (Groovy)
Code (Text):
maven { url 'https://jitpack.io' }
implementation 'sh.lumin:loomui:1.0.2'
Gradle (Kotlin)
Code (Kotlin):
maven
(
"https://jitpack.io"
)
implementation
(
"sh.lumin:loomui:1.0.2"
)