mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-02 14:31:05 +01:00
8 lines
220 B
Lua
8 lines
220 B
Lua
local path = minetest.get_modpath("mcl_copper")
|
|
|
|
mcl_copper = {} -- initialize global variable.
|
|
|
|
dofile(path .. "/nodes.lua")
|
|
dofile(path .. "/items.lua")
|
|
dofile(path .. "/crafting.lua")
|
|
dofile(path .. "/functions.lua")
|