mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
377 B
Plaintext
22 lines
377 B
Plaintext
/*
|
|
* Author: Dslyecxi, MikeMatrix
|
|
* Initializes transmitting map gestures.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_map_gestures_fnc_initTransmit
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if (!GVAR(enabled)) exitWith {};
|
|
|
|
GVAR(EnableTransmit) = true;
|
|
[FUNC(transmit), GVAR(interval), []] call CBA_fnc_addPerFrameHandler;
|