Plex/src/main/java/me/totalfreedom/plex/command/IPlexCommand.java

12 lines
280 B
Java
Raw Normal View History

package me.totalfreedom.plex.command;
import java.util.List;
2020-11-06 01:29:38 +00:00
import me.totalfreedom.plex.command.source.CommandSource;
public interface IPlexCommand
{
void execute(CommandSource sender, String[] args);
2020-11-06 01:29:38 +00:00
List<String> onTabComplete(CommandSource sender, String[] args);
}