mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-16 03:59:14 +03:00
17 lines
376 B
Java
17 lines
376 B
Java
package pro.gravit.launchserver;
|
|
|
|
import pro.gravit.utils.command.Command;
|
|
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 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();
|
|
}
|