2023-09-20 02:15:22 +08:00

16 lines
258 B
Java

package fr.xephi.authme.initialization;
/**
* Interface for reloadable entities.
*
* @see fr.xephi.authme.command.executable.authme.ReloadCommand
*/
public interface Reloadable {
/**
* Performs the reload action.
*/
void reload();
}