CompareLocationsBJ

Parameters
A location
B location
comment
patch

1.00

Source
Blizzard.j
return type
boolean
Source code
function CompareLocationsBJ takes location A, location B returns boolean
    return GetLocationX(A) == GetLocationX(B) and GetLocationY(A) == GetLocationY(B)
endfunction