forked from VoxeLibre/VoxeLibre
14 lines
393 B
Lua
14 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")
|