package io.github.moulberry.notenoughupdates.commands.misc; import io.github.moulberry.notenoughupdates.commands.ClientCommandBase; import net.minecraft.command.CommandException; import net.minecraft.command.ICommandSender; public class ButtonsCommand extends ClientCommandBase { protected ButtonsCommand(String name) { super(name); } @Override public void processCommand(ICommandSender sender, String[] args) throws CommandException { } }