holostorage/init.lua

18 lines
312 B
Lua

-- holostorage
holostorage = rawget(_G, "holostorage") or {}
local modpath = minetest.get_modpath(minetest.get_current_modname())
holostorage.modpath = modpath
holostorage.devices = {}
-- Network
dofile(modpath.."/network.lua")
-- Items
dofile(modpath.."/items.lua")
-- Nodes
dofile(modpath.."/nodes.lua")