xdecor-libre/init.lua
Jean-Patrick Guerrero 203a82c9bf Add pressure plates
2016-02-27 21:08:55 +01:00

28 lines
817 B
Lua

--local t = os.clock()
xdecor = {}
local modpath = minetest.get_modpath("xdecor")
-- Handlers.
dofile(modpath.."/handlers/animations.lua")
dofile(modpath.."/handlers/helpers.lua")
dofile(modpath.."/handlers/nodeboxes.lua")
dofile(modpath.."/handlers/registration.lua")
-- Item files.
dofile(modpath.."/chess.lua")
dofile(modpath.."/cooking.lua")
dofile(modpath.."/craftguide.lua")
dofile(modpath.."/craftitems.lua")
dofile(modpath.."/enchanting.lua")
dofile(modpath.."/hive.lua")
dofile(modpath.."/itemframe.lua")
dofile(modpath.."/mailbox.lua")
dofile(modpath.."/nodes.lua")
dofile(modpath.."/pressureplates.lua")
dofile(modpath.."/recipes.lua")
dofile(modpath.."/rope.lua")
dofile(modpath.."/workbench.lua")
dofile(modpath.."/xwall.lua")
--print(string.format("[xdecor] loaded in %.2f ms", (os.clock()-t)*1000))