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