forked from Mirrorlandia_minetest/digistuff
19 lines
313 B
Lua
19 lines
313 B
Lua
digistuff = {}
|
|
|
|
local components = {
|
|
"touchscreen",
|
|
"light",
|
|
"noteblock",
|
|
"nic",
|
|
"camera",
|
|
"button",
|
|
"panel",
|
|
"piezo",
|
|
"detector",
|
|
"conductors",
|
|
"piston",
|
|
}
|
|
for _,name in ipairs(components) do
|
|
dofile(string.format("%s%s%s.lua",minetest.get_modpath(minetest.get_current_modname()),DIR_DELIM,name))
|
|
end
|