-
Notifications
You must be signed in to change notification settings - Fork 3
Preparing the library
ZorT edited this page May 6, 2023
·
6 revisions
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);
}
We came here for creating GUIs, so let's make one.
Creating GUI with Examples