Files
ChuQuadrant/public/scripts/slash-commands/SlashCommandBreakController.js
2025-09-14 23:43:10 +08:00

8 lines
138 B
JavaScript

export class SlashCommandBreakController {
/**@type {boolean} */ isBreak = false;
break() {
this.isBreak = true;
}
}