blob: 373096f25e81fa2229beb7068ba8ae07810f89b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package net.tylermurphy.hideAndSeek.util;
import org.bukkit.command.CommandSender;
public interface ICommand {
public void execute(CommandSender sender, String[] args);
public String getLabel();
public String getUsage();
public String getDescription();
}
|