mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 08:31:08 +01:00
11 lines
351 B
Lua
11 lines
351 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.."/clearance_vm.lua")
|
|
dofile(modpath.."/foundation.lua")
|
|
dofile(modpath.."/foundation_vm.lua")
|
|
dofile(modpath.."/level.lua")
|
|
dofile(modpath.."/level_vm.lua")
|