Minestom/src/main/java/fr/themode/demo/commands/SimpleCommand.java

18 lines
448 B
Java
Raw Normal View History

2020-04-05 10:15:21 +02:00
package fr.themode.demo.commands;
import fr.themode.minestom.command.CommandProcessor;
import fr.themode.minestom.entity.Player;
public class SimpleCommand implements CommandProcessor {
@Override
public String getCommandName() {
return "test";
}
@Override
public boolean process(Player player, String command, String[] args) {
player.sendMessage("You tried the sample command!");
return true;
}
}