mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
17 lines
391 B
Plaintext
17 lines
391 B
Plaintext
#include "script_component.hpp"
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
["SettingsInitialized", {
|
|
[{
|
|
if (isNull (findDisplay 12)) exitWith {};
|
|
|
|
params ["", "_pfhId"];
|
|
|
|
call FUNC(receiverInit);
|
|
call FUNC(transmitterInit);
|
|
|
|
[_pfhId] call CBA_fnc_removePerFrameHandler;
|
|
}, 1, []] call CBA_fnc_addPerFrameHandler;
|
|
}] call EFUNC(common,addEventHandler);
|