2019-04-01 11:23:25 +02:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
loadInfiltrationContent: (
|
|
|
|
name: string,
|
|
|
|
difficulty: number,
|
|
|
|
maxLevel: number,
|
|
|
|
) => void;
|
|
|
|
loadLocationContent: () => void;
|
|
|
|
loadMissionContent: () => void;
|
|
|
|
loadResleevingContent: () => void;
|
|
|
|
loadStockMarketContent: () => void;
|
|
|
|
loadTerminalContent: () => void;
|
2019-04-01 11:23:25 +02:00
|
|
|
}
|