X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=init.lua;h=629daee3e4d58c7dabc480cc2ab6f9dd7e8c1c35;hb=787ba258d201daec213e8be83e1b8f207410a8a6;hp=fa7955961bb2d16263e739e450e8ff3ce0643c7d;hpb=6e52bc628c578aaae022c97b3b10c697468f1a08;p=xdecor.git diff --git a/init.lua b/init.lua index fa79559..629daee 100644 --- a/init.lua +++ b/init.lua @@ -1,14 +1,24 @@ +--local t = os.clock() xdecor = {} -modpath = minetest.get_modpath("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") -dofile(modpath.."/crafts.lua") -dofile(modpath.."/enchanting.lua") -- In development. -dofile(modpath.."/hive.lua") -dofile(modpath.."/itemframe.lua") -dofile(modpath.."/mailbox.lua") -dofile(modpath.."/rope.lua") -dofile(modpath.."/nodes.lua") -dofile(modpath.."/worktable.lua") -dofile(modpath.."/xwall.lua") + +-- Item files. +dofile(modpath.."/src/chess.lua") +dofile(modpath.."/src/cooking.lua") +dofile(modpath.."/src/craftitems.lua") +dofile(modpath.."/src/enchanting.lua") +dofile(modpath.."/src/hive.lua") +dofile(modpath.."/src/itemframe.lua") +dofile(modpath.."/src/mailbox.lua") +dofile(modpath.."/src/mechanisms.lua") +dofile(modpath.."/src/nodes.lua") +dofile(modpath.."/src/recipes.lua") +dofile(modpath.."/src/rope.lua") +dofile(modpath.."/src/workbench.lua") +--print(string.format("[xdecor] loaded in %.2f ms", (os.clock()-t)*1000))