rework stuff

This commit is contained in:
Hiajen Hiajen 2021-05-23 14:44:16 +02:00
parent e66327e3fb
commit 7cb1ed6f75
4 changed files with 11 additions and 2 deletions

View file

@ -2,10 +2,18 @@ package net.saltymc.eaa.handler.commands;
import net.fabricmc.fabric.api.client.command.v1.FabricClientCommandSource;
import java.util.Set;
public interface Command {
boolean run(final FabricClientCommandSource cs, String[] args);
String getCommand();
Set<String> getAlias();
boolean acceptInput();
/**
* should message get intercepted and not send to Server?
*/