summaryrefslogtreecommitdiff
path: root/init.lua
blob: 13786a6f17b5597e30af321ee96f3d90592c35e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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