ShowUnitHide

Parameters
whichUnit unit

Target unit to hide

comment

Hides unit.

Equivalent to ShowUnit(whichUnit, false)

patch

1.00

Source
Blizzard.j (suggest an edit or discuss on Github)
return type
nothing
Source code
function ShowUnitHide takes unit whichUnit returns nothing
    call ShowUnit(whichUnit, false)
endfunction