pick_and_place-cd2025/registry.lua
2024-06-12 17:51:16 +02:00

12 lines
266 B
Lua

-- registry of templates
-- name => { pos1 = {}, pos2 = {} }
local registry = {}
function pick_and_place.register_template(name, pos1, pos2)
registry[name] = { pos1=pos1, pos2=pos2 }
end
function pick_and_place.get_template(name)
return registry[name]
end