mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-07 01:43:04 +00:00
i give up for the night
This commit is contained in:
11
server/src/main/java/dev/plex/command/IPlexCommand.java
Normal file
11
server/src/main/java/dev/plex/command/IPlexCommand.java
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user