- authme.cache to authme.data - Rename PlayerData to LimboPlayer to match with LimboCache - Move authme.converter to authme.datasource.converter - Split output package into output and message
17 lines
322 B
Java
17 lines
322 B
Java
package fr.xephi.authme.datasource.converter;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
/**
|
|
* Interface for AuthMe converters.
|
|
*/
|
|
public interface Converter {
|
|
|
|
/**
|
|
* Execute the conversion.
|
|
*
|
|
* @param sender the sender who initialized the conversion
|
|
*/
|
|
void execute(CommandSender sender);
|
|
}
|