EnumDestructablesInCircleBJ
- Parameters
-
radius real
loc location
actionFunc code
- comment
- bug
Leaks handle
r
: In Jass you must set local variables that hold agents (or any child type) tonull
at the end of functions to avoid reference counter leaks.- patch
1.00
- Source
- Blizzard.j
- return type
nothing
- Source code
function EnumDestructablesInCircleBJ takes real radius, location loc, code actionFunc returns nothing local rect r if (radius >= 0) then set bj_enumDestructableCenter = loc set bj_enumDestructableRadius = radius set r = GetRectFromCircleBJ(loc, radius) call EnumDestructablesInRect(r, filterEnumDestructablesInCircleBJ, actionFunc) call RemoveRect(r) endif endfunction