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
23 lines
380 B
Plaintext
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;
|