Package com.tomkeuper.bedwars.api.addon
Class Addon
java.lang.Object
com.tomkeuper.bedwars.api.addon.Addon
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract String
Get the author of an addonabstract String
Get the identifier of an addonabstract String
getName()
Get the name of an addonabstract org.bukkit.plugin.Plugin
Get the addon pluginabstract String
Get the version of an addonabstract void
load()
Load everything from the addon Listeners, config files, databases,...abstract void
unload()
Unload everything from the addon
-
Constructor Details
-
Addon
public Addon()
-
-
Method Details
-
getAuthor
Get the author of an addon -
getPlugin
public abstract org.bukkit.plugin.Plugin getPlugin()Get the addon plugin -
getVersion
Get the version of an addon -
getName
Get the name of an addon -
getDescription
Get the identifier of an addon -
load
public abstract void load()Load everything from the addon Listeners, config files, databases,... -
unload
public abstract void unload()Unload everything from the addon
-