This commit is contained in:
2021-06-27 20:27:03 -05:00
commit cbd4520e12
42 changed files with 1836 additions and 0 deletions

14
RAGE/Cutscene.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
/**
* Cutscene Functions
* @public
* @noSelf
*/
declare namespace cutscene {
function stop_cutscene_immediately(): void;
function remove_cutscene(): void;
function is_cutscene_active(): boolean;
function is_cutscene_playing(): boolean;
}