aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/makamys/neodymium/command/ISubCommand.java
blob: 91eccff33e71bf8f58749f2d25c039c71157bde0 (plain)
1
2
3
4
5
6
7
8
9
package makamys.neodymium.command;

import net.minecraft.command.ICommandSender;

public interface ISubCommand {
    
    void processCommand(ICommandSender sender, String[] args);
    
}