mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 08:31:08 +01:00
9 lines
243 B
Lua
9 lines
243 B
Lua
|
local modname = minetest.get_current_modname()
|
||
|
local modpath = minetest.get_modpath(modname)
|
||
|
vl_terraforming = {}
|
||
|
|
||
|
dofile(modpath.."/util.lua")
|
||
|
dofile(modpath.."/clearance.lua")
|
||
|
dofile(modpath.."/foundation.lua")
|
||
|
dofile(modpath.."/level.lua")
|