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

10 lines
201 B
Java
Raw Normal View History

2021-05-21 22:51:30 +02:00
package net.saltymc.eaa.commands;
import net.fabricmc.fabric.api.client.command.v1.FabricClientCommandSource;
public interface Command {
int run(FabricClientCommandSource cs, String[] args);
}