This repository has been archived on 2023-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
mcl_decor/init.lua

14 lines
332 B
Lua

-- mcl_decor/init.lua
mcl_decor = {}
local modpath = minetest.get_modpath(minetest.get_current_modname())
-- load files
dofile(modpath.."/api.lua")
dofile(modpath.."/wooden.lua")
dofile(modpath.."/colored.lua")
dofile(modpath.."/paths.lua")
dofile(modpath.."/hedges.lua")
dofile(modpath.."/oven.lua")
dofile(modpath.."/misc.lua")