12 lines
252 B
Lua
12 lines
252 B
Lua
hud = {}
|
|
local modpath = minetest.get_modpath("hud")
|
|
|
|
dofile(modpath .. "/api.lua")
|
|
dofile(modpath .. "/functions.lua")
|
|
dofile(modpath .. "/builtin.lua")
|
|
dofile(modpath .. "/legacy.lua")
|
|
if hud.item_wheel then
|
|
dofile(modpath .. "/itemwheel.lua")
|
|
end
|
|
|