mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
24 lines
444 B
Plaintext
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;
|