mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-12 06:28:34 +00:00
13 lines
257 B
Java
13 lines
257 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);
|
|
}
|