CompareRectsBJ
- Parameters
A rectB rect- comment
- patch
1.00
- Source
- Blizzard.j (suggest an edit or discuss on Github)
- 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