mirror of
https://gitlab.icynet.eu/evert/melterns.git
synced 2024-11-24 07:53:47 +01:00
17 lines
299 B
Lua
17 lines
299 B
Lua
fluidity = rawget(_G, "fluidity") or {}
|
|
|
|
local mpath = minetest.get_modpath("fluidity")
|
|
fluidity.modpath = mpath
|
|
|
|
-- Functions
|
|
dofile(mpath.."/functions.lua")
|
|
|
|
-- Molten metals
|
|
dofile(mpath.."/molten.lua")
|
|
|
|
-- Tanks
|
|
dofile(mpath.."/tanks.lua")
|
|
|
|
-- Register everything
|
|
dofile(mpath.."/register.lua")
|