10 lines
No EOL
280 B
JavaScript
10 lines
No EOL
280 B
JavaScript
import ImageCommand from "../../classes/imageCommand.js";
|
|
|
|
class WallCommand extends ImageCommand {
|
|
static description = "Creates a wall from an image";
|
|
|
|
static noImage = "You need to provide an image to make a wall!";
|
|
static command = "wall";
|
|
}
|
|
|
|
export default WallCommand; |