ACE3/addons/missileguidance/functions/fnc_handleHandoff.sqf
Dedmen Miller 81e02a7336 Refactor private ARRAY to private keyword (#5598)
* Everything

* Fixed missing ;

* Fix missing ; and double private

* Fixed cannot isNull on number

* Turn _temparture back to isNil

* Fix error from merge
2017-10-10 09:39:59 -05:00

24 lines
448 B
Plaintext

/*
* Author: ACE-Team
* Not currently used
*
* Arguments:
* 0: TARGET <OBJECT>
* 1: ARGS <ARRAY>
*
* Return Value:
* Boolean <BOOLEAN>
*
* Example:
* [bob, kevin] call ACE_missileguidance_fnc_handleHandoff
*
* Public: No
*/
#include "script_component.hpp"
params ["_target", "_args"];
if (isNil "_target" || {isNull _target} || {!local _target} ) exitWith { false };
[FUNC(guidancePFH), 0, _args] call CBA_fnc_addPerFrameHandler;