summaryrefslogtreecommitdiff
path: root/init.lua
blob: 4fa7a2ba51168fe0e339ad74beb3b80485b9952e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
digistuff = {}

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))
end