1
1
spogulis no https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-28 15:12:45 -04:00
OC-PsychOS2/module/component-get.lua
2023-07-31 08:11:24 +10:00

9 rindas
186 B
Lua

function component.get(addr, ctype)
for c in component.list(ctype, true) do
if c:sub(1, addr:len()) == addr then
return c
end
end
return nil, "no such component"
end