Class BukkitGestaltLoader

java.lang.Object
ovh.mythmc.gestalt.loader.GestaltLoader
ovh.mythmc.gestalt.loader.BukkitGestaltLoader

public class BukkitGestaltLoader extends GestaltLoader
A GestaltLoader implementation for the Bukkit/Spigot platform.

Loads the Gestalt JAR via Bukkit.getPluginManager().loadPlugin() and reports availability via Bukkit.getPluginManager().isPluginEnabled("gestalt").

Use builder() to construct an instance:


 BukkitGestaltLoader loader = BukkitGestaltLoader.builder()
     .initializer(this)
     .build();
 loader.initialize();