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

13
RAGE/Fire.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
/**
* Fire Functions
* @public
* @noSelf
*/
declare namespace fire {
function add_explosion(pos: v3, type: int, isAudible: boolean, isInvis: boolean, fCamShake: float, owner: Ped): boolean;
function start_entity_fire(ped: Ped): Ped;
function stop_entity_fire(ped: Ped): void;
}