Fix a bunch of scripting related stuff.

This commit is contained in:
Olivier Gagnon
2021-11-25 11:47:31 -05:00
parent 8ad7ca5136
commit f0a004e75b
18 changed files with 337 additions and 6 deletions

View File

@@ -1993,6 +1993,26 @@ export interface Singularity {
* @returns True if the installation was successful.
*/
installBackdoor(): Promise<void>;
/**
* Check if the player is focused.
* @remarks
* RAM cost: 0.1 GB
*
* Singularity - Level 2
*
* @returns True if the player is focused.
*/
isFocused(): void;
/**
* Set the players focus.
* @remarks
* RAM cost: 0.1 GB
*
* Singularity - Level 2
*/
setFocus(focus: boolean): void;
}
/**