2016-03-14 19:00:03 -07:00
|
|
|
package WayofTime.bloodmagic.command;
|
|
|
|
|
|
|
|
import net.minecraft.command.ICommand;
|
|
|
|
import net.minecraft.command.ICommandSender;
|
2016-03-17 13:00:44 -07:00
|
|
|
import net.minecraft.server.MinecraftServer;
|
2016-03-14 19:00:03 -07:00
|
|
|
|
2016-03-16 18:41:06 -04:00
|
|
|
public interface ISubCommand
|
|
|
|
{
|
2016-03-14 19:00:03 -07:00
|
|
|
|
|
|
|
String getSubCommandName();
|
|
|
|
|
|
|
|
ICommand getParentCommand();
|
|
|
|
|
|
|
|
String getArgUsage(ICommandSender commandSender);
|
|
|
|
|
|
|
|
String getHelpText();
|
|
|
|
|
2016-03-17 13:00:44 -07:00
|
|
|
void processSubCommand(MinecraftServer server, ICommandSender commandSender, String[] args);
|
2016-03-14 19:00:03 -07:00
|
|
|
}
|