Adds the classes necessary for the new scrapper Partly implements some scrapper functionality Restructures some classes to reduce code duplication Moves some classes to make some classes easier to find Adds a bunch of TODOs where things have an unfinished implementation
21 lines
677 B
Java
21 lines
677 B
Java
package net.knarcraft.blacksmith.command.scrapper;
|
|
|
|
import org.apache.commons.lang.NotImplementedException;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.command.TabCompleter;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
import java.util.List;
|
|
|
|
public class ScrapperConfigTabCompleter implements TabCompleter {
|
|
|
|
@Override
|
|
public @Nullable List<String> onTabComplete(@NotNull CommandSender commandSender, @NotNull Command command,
|
|
@NotNull String s, @NotNull String[] strings) {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
}
|