de.twenty11.skysail.common.commands.Command Maven / Gradle / Ivy
package de.twenty11.skysail.common.commands;
import java.util.List;
public interface Command {
String getName();
String getDescription();
boolean applicable();
void execute();
List executionMessages();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy