mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 22:38:34 +02: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>();
|