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(); }