![JAR search and dependency download from the Maven repository](/logo.png)
cn.nukkit.command.defaults.VanillaCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.command.defaults;
import cn.nukkit.command.Command;
/**
* @author MagicDroidX (Nukkit Project)
*/
public abstract class VanillaCommand extends Command {
public VanillaCommand(String name) {
super(name);
}
public VanillaCommand(String name, String description) {
super(name, description);
}
public VanillaCommand(String name, String description, String usageMessage) {
super(name, description, usageMessage);
}
public VanillaCommand(String name, String description, String usageMessage, String[] aliases) {
super(name, description, usageMessage, aliases);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy