EAA_MOD/src/main/java/net/saltymc/eaa/handler/commands/Command.java

15 lines
323 B
Java

package net.saltymc.eaa.handler.commands;
import net.fabricmc.fabric.api.client.command.v1.FabricClientCommandSource;
public interface Command {
boolean run(final FabricClientCommandSource cs, String[] args);
/**
* should message get intercepted and not send to Server?
*/
boolean intercept();
}