Update from Git Manager GUI

This commit is contained in:
2026-03-30 20:45:29 +02:00
parent 8c6b982c0e
commit 39bbe8d4ad
23 changed files with 3330 additions and 0 deletions

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