ACE3/addons/missileguidance/functions/fnc_handleHandoff.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

24 lines
444 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_2(_target,_args);
if (isNil "_target" || {isNull _target} || {!local _target} ) exitWith { false };
[FUNC(guidancePFH), 0, _args] call CBA_fnc_addPerFrameHandler;