2024-12-22 16:11:05 -08:00

14 lines
417 B
Lua

leef = leef or {
loaded_modules = {}
}
--initialize namespace vars if not present.
leef.binary = leef.binary or {}
leef.utils = leef.utils or {}
leef.paths = leef.paths or {}
leef.loaded_modules.filesystem = true
--run files. These will directly modify the leef sub tables.
local path = minetest.get_modpath("leef_filesystem")
dofile(path.."/binary.lua")
dofile(path.."/mod_utils.lua")
dofile(path.."/paths.lua")