Skip to content

Preparing the library

ZorT edited this page May 6, 2023 · 6 revisions

Initializing the library

Before you use this library in your plugin, you'll need to initialize it.
This task should be ran in onEnable() method and only once, on startup of your plugin.

@Override
public void onEnable() {
    Containr.init(this);
}

Let's make a real GUI!

We came here for creating GUIs, so let's make one.
Creating GUI with Examples

Clone this wiki locally