9 lines
No EOL
290 B
JavaScript
9 lines
No EOL
290 B
JavaScript
import SoundboardCommand from "../../classes/soundboardCommand.js";
|
|
|
|
class WinXPCommand extends SoundboardCommand {
|
|
static file = "./assets/audio/winxp.ogg";
|
|
static description = "Plays the Windows XP startup sound";
|
|
static aliases = ["windows", "xp"];
|
|
}
|
|
|
|
export default WinXPCommand; |