OffsetLocation

Parameters
loc location
dx real
dy real
return type
location
Source code
function OffsetLocation takes location loc, real dx, real dy returns location
    return Location(GetLocationX(loc) + dx, GetLocationY(loc) + dy)
endfunction
Source
Blizzard.j
wc3modding.com
OffsetLocation