ACE3/addons/missileguidance/functions/fnc_handleHandoff.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

23 lines
450 B
Plaintext

#include "..\script_component.hpp"
/*
* 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
*/
params ["_target", "_args"];
if (isNil "_target" || {isNull _target} || {!local _target} ) exitWith { false };
[FUNC(guidancePFH), 0, _args] call CBA_fnc_addPerFrameHandler;