most terminal converted to ts

This commit is contained in:
Olivier Gagnon
2021-09-15 19:50:44 -04:00
parent 8097364242
commit 2922e42055
60 changed files with 2998 additions and 2259 deletions
+2
View File
@@ -24,6 +24,7 @@ import { Exploit } from "../Exploits/Exploit";
import { ICorporation } from "../Corporation/ICorporation";
import { IGang } from "../Gang/IGang";
import { IBladeburner } from "../Bladeburner/IBladeburner";
import { ICodingContractReward } from "../CodingContracts";
export interface IPlayer {
// Class members
@@ -207,4 +208,5 @@ export interface IPlayer {
queueAugmentation(augmentationName: string): void;
receiveInvite(factionName: string): void;
updateSkillLevels(): void;
gainCodingContractReward(reward: ICodingContractReward, difficulty?: number): string;
}