TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/IEssentialsCommand.java

21 lines
524 B
Java
Raw Normal View History

package com.earth2me.essentials.commands;
import org.bukkit.*;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import com.earth2me.essentials.*;
public interface IEssentialsCommand
{
String getName();
String[] getTriggers();
void run(Server server, Essentials parent, User user, String commandLabel, Command cmd, String[] args)
throws Exception;
void run(Server server, Essentials parent, CommandSender sender, String commandLabel, Command cmd, String[] args)
throws Exception;
}