bitburner-src/src/Netscript/Environment.ts
2023-01-05 20:41:24 -05:00

18 lines
466 B
TypeScript

import { NSFull } from "../NetscriptFunctions";
/**
* The environment in which a script runs. The environment holds
* Netscript functions and arguments for that script.
*/
export class Environment {
/** Whether or not the script that uses this Environment should stop running */
stopFlag = false;
/** The currently running function */
runningFn = "";
/** Environment variables (currently only Netscript functions) */
vars: NSFull | null = null;
}