Debug commands

Not fully tested. The ones tested do work, though.
This commit is contained in:
Nick 2016-03-14 19:00:03 -07:00
parent a3b7001d55
commit d9e9a4704a
9 changed files with 644 additions and 4 deletions

View file

@ -0,0 +1,17 @@
package WayofTime.bloodmagic.command;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
public interface ISubCommand {
String getSubCommandName();
ICommand getParentCommand();
String getArgUsage(ICommandSender commandSender);
String getHelpText();
void processSubCommand(ICommandSender commandSender, String[] args);
}