summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/IEssentialsCommand.java
blob: a5192ba10f0aa7d0f8c778d23079dc513cb3847d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.earth2me.essentials.commands;

import com.earth2me.essentials.IEssentials;
import com.earth2me.essentials.User;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.Server;


public interface IEssentialsCommand
{
	String getName();

	void run(Server server, User user, String commandLabel, Command cmd, String[] args)
			throws Exception;

	void run(Server server, CommandSender sender, String commandLabel, Command cmd, String[] args)
			throws Exception;
	
	void setEssentials(IEssentials ess);
}