bitburner-src/src/IEngine.ts

16 lines
484 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 {
2019-04-14 11:08:10 +02:00
hideAllContent: () => void;
loadBladeburnerContent: () => void;
2019-04-14 11:08:10 +02:00
loadFactionContent: () => void;
loadFactionsContent: () => void;
loadGangContent: () => void;
loadInfiltrationContent: () => void;
2019-04-14 11:08:10 +02:00
loadMissionContent: () => void;
loadResleevingContent: () => void;
loadStockMarketContent: () => void;
}