ACE3/addons/common/functions/fnc_requestCallback.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

23 lines
380 B
Plaintext

/*
* Author: Glowbal
* N/A
*
* Arguments:
* ? <UNKNOWN>
*
* Return Value:
* ? <UNKNOWN>
*
* Example:
* [bob] call ace_common_fnc_requestCallback
*
* Public: No
*/
#include "script_component.hpp"
params ["_info", "_accepted"];
_info params ["_caller", "_target", "_requestID", "_requestMessage", "_callBack"];
[_caller, _target, _accepted] call compile _callBack;