2016-01-06 00:11:13 +01:00
|
|
|
digistuff = {}
|
2015-12-15 21:42:58 +01:00
|
|
|
|
2018-11-24 22:56:29 +01:00
|
|
|
local components = {
|
|
|
|
"touchscreen",
|
|
|
|
"light",
|
|
|
|
"noteblock",
|
|
|
|
"nic",
|
|
|
|
"camera",
|
|
|
|
"button",
|
|
|
|
"panel",
|
|
|
|
"piezo",
|
|
|
|
"detector",
|
|
|
|
"conductors",
|
2018-11-25 04:00:18 +01:00
|
|
|
"piston",
|
2018-11-24 22:56:29 +01: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 19:11:32 +02:00
|
|
|
end
|