blob: 63d5c327c211150a0c51eed02d38a4073af03ce4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 {
}
}
|