PauseTimerBJ

Parameters
pause boolean
whichTimer timer
comment
patch

1.00

Source
Blizzard.j
return type
nothing
Source code
function PauseTimerBJ takes boolean pause, timer whichTimer returns nothing
    if pause then
        call PauseTimer(whichTimer)
    else
        call ResumeTimer(whichTimer)
    endif
endfunction