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