i give up for the night

This commit is contained in:
2024-01-20 02:02:45 -06:00
parent 8710b478c1
commit 9e333a50b9
3 changed files with 20 additions and 7 deletions

View File

@ -0,0 +1,11 @@
package dev.plex.command;
import org.bukkit.command.CommandSender;
import org.jetbrains.annotations.NotNull;
import java.util.List;
public interface IPlexCommand
{
@NotNull List<String> tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args, List<String> list) throws IllegalArgumentException;
}