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