Debug commands
Not fully tested. The ones tested do work, though.
This commit is contained in:
parent
a3b7001d55
commit
d9e9a4704a
9 changed files with 644 additions and 4 deletions
17
src/main/java/WayofTime/bloodmagic/command/ISubCommand.java
Normal file
17
src/main/java/WayofTime/bloodmagic/command/ISubCommand.java
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue