mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-03 04:53:51 +01:00
aa80cf6451
Reverted ToastVariant back to an enum internally. Still exposed to player as just possible strings. Changed all 1-line documentation comments to actually be 1-line. Moved some because they were not providing documentation for the thing they were trying to.
5 lines
193 B
TypeScript
5 lines
193 B
TypeScript
import { WorkerScript } from "./WorkerScript";
|
|
|
|
/** Global pool of all active scripts (scripts that are currently running) */
|
|
export const workerScripts: Map<number, WorkerScript> = new Map();
|