Removed unused class.

This commit is contained in:
Aust1n46 2021-08-29 00:45:01 -04:00
parent 9796065282
commit 8be4071dda

View File

@ -1,27 +0,0 @@
package mineverse.Aust1n46.chat.command;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
//This class is a subclass of Bukkit's command class that is used for registering customizable commands, such as aliases
//and channel aliases.
public class CCommand extends Command {
private CommandExecutor exe = null;
public CCommand(String name) {
super(name);
}
public boolean execute(CommandSender sender, String commandLabel, String[] args) {
if(exe != null) {
exe.onCommand(sender, this, commandLabel, args);
}
return false;
}
public void setExecutor(CommandExecutor exe) {
this.exe = exe;
}
}