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

21 lines
632 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;
2023-05-10 15:01:14 +00:00
import java.util.Collections;
2023-05-09 10:47:43 +00:00
import java.util.List;
public class PropertiesCommand implements CommandHandler {
@Override
2023-05-10 15:01:14 +00:00
public void run(CommandContext context) throws CommandExecutionException {
context.send("Not implemented yet!");
2023-05-09 10:47:43 +00:00
}
@Override
public List<String> suggest(CommandContext context) throws CommandExecutionException {
2023-05-10 15:01:14 +00:00
return Collections.emptyList();
2023-05-09 10:47:43 +00:00
}
}