mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-21 16:05:03 +00:00
21 lines
524 B
Java
21 lines
524 B
Java
![]() |
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;
|
||
|
}
|