customnode/init.lua
2017-04-20 19:32:21 +02:00

11 lines
279 B
Lua

local fspath = minetest.get_modpath("customnode")
customnode = {}
customnode._variants = {}
customnode._tasks = {}
customnode.variant_class = dofile(fspath.."/variant_generator.lua")
dofile(fspath.."/framework.lua")
dofile(fspath.."/tasks.lua")
dofile(fspath.."/variants.lua")