

SGui (Server GUI)
This is a ported version of the SGui Library - a compact tool that can be connected via JIJ and allows creating server-side graphical interfaces.
The main goal of this build is to enable porting Fabric mods that use the original SGui library to Neoforge.
Usage (for mod developers):
Add the library to dependencies in the following way:
- Create a
lib
folder and place the JAR file in it - Add the local repository to your build.gradle file:
repositories {
flatDir {
dir 'libs'
}
}
dependencies {
modImplementation include("eu.pb4:sgui:1.9.1+1.21.5-neoforge") // Configure this according to the JAR file you are using
}
Here's an example of a mod that uses this library: AuctionHouse
After setup, you're ready to go! You can directly use SimpleGUI and other classes to create simple interfaces or extend them for more complex implementations.