Upload folder via GUI - src

This commit is contained in:
Git Manager GUI
2026-05-22 19:25:06 +02:00
parent 6a63ed815f
commit 7876c7e68f
54 changed files with 16108 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();
}