RSignBJ

Parameters
a real
return type
real
Source code
function RSignBJ takes real a returns real
    if (a >= 0.0) then
        return 1.0
    else
        return -1.0
    endif
endfunction
Source
Blizzard.j
wc3modding.com
RSignBJ