CompareRectsBJ
- Parameters
-
A rect
B rect
- 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
- Source
- Blizzard.j
- wc3modding.com
- CompareRectsBJ