-- @/lua/ge/extensions/gameplay/crawl/boundary.lua:423
-- Function to get quadtree statistics for debugging
local function getQuadtreeStats()
if not boundaryQuadtree then
return {built = false, objectCount = 0}
end
return {
built = true,
objectCount = #boundaryObjects,
bounds = quadtreeBounds
}
end