mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
360 B
Plaintext
24 lines
360 B
Plaintext
|
#include "../script_component.hpp"
|
||
|
/*
|
||
|
* Author: LorenLuke
|
||
|
* Delete all markers on the plotting board.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* None
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Example:
|
||
|
* call ace_maptools_fnc_wipeMarkers
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
|
||
|
{
|
||
|
deleteMarker _x;
|
||
|
} forEach (keys GVAR(plottingBoard_markers));
|
||
|
|
||
|
// Reset list
|
||
|
GVAR(plottingBoard_markers) = createHashMap;
|