Applied-Energistics-2-tiler.../server/ISubCommand.java

14 lines
260 B
Java
Raw Normal View History

package appeng.server;
import net.minecraft.command.ICommandSender;
import net.minecraft.server.MinecraftServer;
public interface ISubCommand
{
String getHelp(MinecraftServer srv);
void call(MinecraftServer srv, String[] args, ICommandSender sender);
}