mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-01 15:32:39 +00:00
13 lines
393 B
Lua
13 lines
393 B
Lua
-- Minetest 0.4 mod: mcl_stairs
|
|
-- See README.txt for licensing and other information.
|
|
|
|
-- Global namespace for functions
|
|
|
|
mcl_stairs = {}
|
|
|
|
-- Load other files
|
|
|
|
dofile(minetest.get_modpath("mcl_stairs").."/api.lua")
|
|
dofile(minetest.get_modpath("mcl_stairs").."/register.lua")
|
|
dofile(minetest.get_modpath("mcl_stairs").."/crafting.lua")
|
|
dofile(minetest.get_modpath("mcl_stairs").."/alias.lua")
|