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