25 lines
436 B
Plaintext
25 lines
436 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
private _baseMarkerStore = localNamespace getVariable [
|
|
QGVAR(baseMarkerStore),
|
|
[]
|
|
];
|
|
private _assetMarkerStore = localNamespace getVariable [
|
|
QGVAR(assetMarkerStore),
|
|
[]
|
|
];
|
|
|
|
// delete markers
|
|
{
|
|
deleteMarkerLocal (_x#1);
|
|
} forEach (_baseMarkerStore + _assetMarkerStore);
|
|
|
|
localNamespace setVariable [
|
|
QGVAR(baseMarkerStore),
|
|
[]
|
|
];
|
|
localNamespace setVariable [
|
|
QGVAR(assetMarkerStore),
|
|
[]
|
|
];
|