digistuff/init.lua

18 lines
302 B
Lua
Raw Normal View History

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",
}
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