ACE3/addons/missileguidance/functions/fnc_doHandoff.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

22 lines
345 B
Plaintext

/*
* Author: ACE
* Not currently used
*
* Arguments:
* 0: Target <OBJECT>
* 1: Args <ARRAY>
*
* Return Value:
* None
*
* Example:
* [target, [args]] call ace_missileguidance_fnc_doHandoff
*
* Public: No
*/
#include "script_component.hpp"
params ["_target", "_args"];
[QGVAR(handoff), [_target, _args]] call CBA_fnc_globalEvent;