EpicBosses/plugin-modules/Core/src/com/songoda/epicbosses/commands/boss/BossGiveEggCmd.java

22 lines
424 B
Java
Raw Normal View History

package com.songoda.epicbosses.commands.boss;
import com.songoda.epicbosses.utils.command.SubCommand;
import org.bukkit.command.CommandSender;
/**
* @author Charles Cullen
* @version 1.0.0
* @since 14-Nov-18
*/
public class BossGiveEggCmd extends SubCommand {
public BossGiveEggCmd() {
super("give", "giveegg");
}
@Override
public void execute(CommandSender sender, String[] args) {
}
}