OffsetLocation

Parameters
loc location
dx real
dy real
comment
patch

1.00

Source
Blizzard.j
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