Skip to content
Rapha149 edited this page Jan 25, 2024 · 5 revisions

In order to be able to use the api, you have to call DisplayUtils#init in your Plugin#onEnable method:

public class MyPlugin extends JavaPlugin {

    @Override
    public void onEnable() {
        // some code

        DisplayUtils.init(this);

        // some more code
    }
}

After you have done that, you can use the individual utils as described in the different sections of the wiki.

Clone this wiki locally