poixpixel-discord-bot/source/util.ts
2023-09-18 11:23:10 -04:00

17 lines
No EOL
389 B
TypeScript

export * as object from "./util/object";
export abstract class Runable {
#running = false;
abstract on_run(): void;
abstract on_terminate(): void;
public set running(value: boolean) {
if (value && !this.#running) this.on_run();
else if (!value && this.#running) this.on_terminate();
}
public get running() {
return this.#running;
}
}