Launcher/LaunchServer/src/main/java/pro/gravit/launchserver/Reconfigurable.java

18 lines
376 B
Java
Raw Normal View History

package pro.gravit.launchserver;
import pro.gravit.utils.command.Command;
import java.util.Map;
2019-01-15 06:35:39 +03:00
/**
* Allows calling commands using the config command
*/
public interface Reconfigurable {
/**
* Gets a list of commands available for this object.
* @return Key - Command Name
* Value is a command object
*/
Map<String, Command> getCommands();
}