All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.command.defaults.BukkitCommand Maven / Gradle / Ivy

package org.bukkit.command.defaults;

import org.bukkit.command.Command;

import java.util.List;

public abstract class BukkitCommand extends Command {
  protected BukkitCommand(String name) {
    super(name);
  }

  protected BukkitCommand(String name, String description, String usageMessage, List aliases) {
    super(name, description, usageMessage, aliases);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy