bitburner-src/src/IEngine.ts

18 lines
586 B
TypeScript
Raw Normal View History

/**
* TypeScript interface for the game engine (engine.js), which can't be converted
* to TypeScript at the moment
*/
export interface IEngine {
2021-09-05 01:09:30 +02:00
hideAllContent: () => void;
loadBladeburnerContent: () => void;
loadFactionContent: () => void;
loadFactionsContent: () => void;
loadGangContent: () => void;
2021-09-09 05:47:34 +02:00
loadInfiltrationContent: (name: string, difficulty: number, maxLevel: number) => void;
2021-09-05 01:09:30 +02:00
loadLocationContent: () => void;
loadMissionContent: () => void;
loadResleevingContent: () => void;
loadStockMarketContent: () => void;
loadTerminalContent: () => void;
}