2016-01-05 17:11:13 -06:00
|
|
|
digistuff = {}
|
2015-12-15 14:42:58 -06:00
|
|
|
|
2018-11-24 15:56:29 -06:00
|
|
|
local components = {
|
|
|
|
"touchscreen",
|
|
|
|
"light",
|
|
|
|
"noteblock",
|
|
|
|
"nic",
|
|
|
|
"camera",
|
|
|
|
"button",
|
|
|
|
"panel",
|
|
|
|
"piezo",
|
|
|
|
"detector",
|
|
|
|
"conductors",
|
2018-11-24 21:00:18 -06:00
|
|
|
"piston",
|
2018-11-24 15:56:29 -06:00
|
|
|
}
|
|
|
|
for _,name in ipairs(components) do
|
|
|
|
dofile(string.format("%s%s%s.lua",minetest.get_modpath(minetest.get_current_modname()),DIR_DELIM,name))
|
2016-08-10 12:11:32 -05:00
|
|
|
end
|