CompareRectsBJ

Parameters
A rect
B rect
comment
patch

1.00

Source
Blizzard.j
return type
boolean
Source code
function CompareRectsBJ takes rect A, rect B returns boolean
    return GetRectMinX(A) == GetRectMinX(B) and GetRectMinY(A) == GetRectMinY(B) and GetRectMaxX(A) == GetRectMaxX(B) and GetRectMaxY(A) == GetRectMaxY(B)
endfunction