aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/commands/misc/ButtonsCommand.java
blob: 16f59910dbf799a5872ec868dc894a37f6e83726 (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 {

    }
}