Soft-delete copy _trash/2026-05-07T19-39-23-130Z/src/main/java/net/viper/status/module/Module.java
This commit is contained in:
@@ -0,0 +1,24 @@
|
|||||||
|
package net.viper.status.module;
|
||||||
|
|
||||||
|
import net.md_5.bungee.api.plugin.Plugin;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface für alle zukünftigen Erweiterungen.
|
||||||
|
*/
|
||||||
|
public interface Module {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wird aufgerufen, wenn die API startet.
|
||||||
|
*/
|
||||||
|
void onEnable(Plugin plugin);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wird aufgerufen, wenn die API stoppt.
|
||||||
|
*/
|
||||||
|
void onDisable(Plugin plugin);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Eindeutiger Name des Moduls (z.B. "StatsModule").
|
||||||
|
*/
|
||||||
|
String getName();
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user