pointCompare
not ratedReturns true if the two locations are exactly identical, but not necissarily the same instance.
function pointCompare takes location a, location b returns boolean
return GetLocationX(a) == GetLocationX(b) and GetLocationY(a) == GetLocationY(b)
endfunctionNo comments.