2023-03-15 14:09:09 +00:00
|
|
|
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"];
|
|
|
|
}
|
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export default WinXPCommand;
|