mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 09:33:49 +01:00
5 lines
188 B
TypeScript
5 lines
188 B
TypeScript
import { WorkerScript } from "./WorkerScript";
|
|
|
|
/** Global pool of all active scripts (scripts that are currently running) */
|
|
export const workerScripts = new Map<number, WorkerScript>();
|