bitburner-src/src/Terminal/commands/analyze.ts

19 lines
504 B
TypeScript
Raw Normal View History

2021-09-16 01:50:44 +02:00
import { ITerminal } from "../ITerminal";
2021-09-17 08:58:02 +02:00
import { IRouter } from "../../ui/Router";
2021-09-16 01:50:44 +02:00
import { IPlayer } from "../../PersonObjects/IPlayer";
import { BaseServer } from "../../Server/BaseServer";
export function analyze(
terminal: ITerminal,
2021-09-17 08:58:02 +02:00
router: IRouter,
2021-09-16 01:50:44 +02:00
player: IPlayer,
server: BaseServer,
2021-12-03 20:44:32 +01:00
args: (string | number | boolean)[],
2021-09-16 01:50:44 +02:00
): void {
if (args.length !== 0) {
2021-10-27 02:26:05 +02:00
terminal.error("Incorrect usage of analyze command. Usage: analyze");
2021-09-16 01:50:44 +02:00
return;
}
terminal.startAnalyze(player);
2021-09-16 01:50:44 +02:00
}