ZNPCsPlus/plugin/src/main/java/lol/pyr/znpcsplus/commands/PropertiesCommand.java

20 lines
649 B
Java
Raw Normal View History

2023-05-09 10:47:43 +00:00
package lol.pyr.znpcsplus.commands;
import lol.pyr.director.adventure.command.CommandContext;
import lol.pyr.director.adventure.command.CommandHandler;
import lol.pyr.director.common.command.CommandExecutionException;
import java.util.List;
public class PropertiesCommand implements CommandHandler {
@Override
public void run(CommandContext commandContext) throws CommandExecutionException {
commandContext.getSender().sendMessage("Not implemented yet!");
}
@Override
public List<String> suggest(CommandContext context) throws CommandExecutionException {
return CommandHandler.super.suggest(context);
}
}