Files
MissionTemplate/framework/mapcopy/functions/fn_loadMapMarkers.sqf

8 lines
200 B
Plaintext

#include "..\script_component.hpp"
// accepts an array of serialized markers and adds them to local map
params [["_markerList", [], [[]]]];
{
_x call FUNC(stringToMapMarker);
} foreach _markerList;