mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
23 lines
383 B
Plaintext
23 lines
383 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Glowbal
|
|
* N/A
|
|
*
|
|
* Arguments:
|
|
* ? <UNKNOWN>
|
|
*
|
|
* Return Value:
|
|
* ? <UNKNOWN>
|
|
*
|
|
* Example:
|
|
* [bob] call ace_common_fnc_requestCallback
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_info", "_accepted"];
|
|
|
|
_info params ["_caller", "_target", "_requestID", "_requestMessage", "_callBack"];
|
|
|
|
[_caller, _target, _accepted] call compile _callBack;
|