14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
/**
|
|
* 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;
|
|
|
|
}
|
|
|