package de.craftlancer.imagemaps; import de.craftlancer.core.command.CommandHandler; public class ImageMapCommandHandler extends CommandHandler { public ImageMapCommandHandler(ImageMaps plugin) { super(plugin); registerSubCommand("download", new ImageMapDownloadCommand(plugin)); registerSubCommand("place", new ImageMapPlaceCommand(plugin)); registerSubCommand("info", new ImageMapInfoCommand(plugin)); registerSubCommand("list", new ImageMapListCommand(plugin)); registerSubCommand("reload", new ImageMapReloadCommand(plugin)); registerSubCommand("help", new ImageMapHelpCommand(plugin, getCommands()), "?"); } }