mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-17 00:56:12 +00:00
12 lines
256 B
Java
12 lines
256 B
Java
package dev.plex.command;
|
|
|
|
import dev.plex.command.source.CommandSource;
|
|
import java.util.List;
|
|
|
|
public interface IPlexCommand
|
|
{
|
|
void execute(CommandSource sender, String[] args);
|
|
|
|
List<String> onTabComplete(CommandSource sender, String[] args);
|
|
}
|