import ImageCommand from "../../classes/imageCommand.js"; class TileCommand extends ImageCommand { static category = "image-editing" static description = "Creates a tile pattern from an image"; static aliases = ["wall2"]; static noImage = "You need to provide an image/GIF to tile!"; static command = "tile"; } export default TileCommand;