Plex/src/main/java/me/totalfreedom/plex/command/IPlexCommand.java
Telesphoreo e4d097aa51 Add some commands and listeners
- Add gamemode commands
- Added MOTD listener
- Fixed bugs
2020-11-05 21:50:16 -06:00

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);
}