mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-04-03 18:24:14 +00:00
17 lines
No EOL
389 B
TypeScript
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;
|
|
}
|
|
} |