Soft-delete copy _trash/2026-05-07T19-39-23-130Z/src/main/java/net/viper/status/module/Module.java

This commit is contained in:
2026-05-07 19:39:25 +00:00
parent 5f52d4fb61
commit 249d216591

View File

@@ -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();
}