2017-06-05 19:40:56 +03:00
|
|
|
-- Minetest 0.4 mod: mcl_stairs
|
2015-06-29 20:55:56 +03:00
|
|
|
-- See README.txt for licensing and other information.
|
2017-01-16 13:46:51 +02:00
|
|
|
|
|
|
|
-- Global namespace for functions
|
|
|
|
|
2017-06-05 19:40:56 +03:00
|
|
|
mcl_stairs = {}
|
2015-06-29 20:55:56 +03:00
|
|
|
|
2017-06-05 20:11:01 +03:00
|
|
|
-- Load other files
|
2017-06-05 16:41:42 +03:00
|
|
|
|
2017-06-05 20:11:01 +03:00
|
|
|
dofile(minetest.get_modpath("mcl_stairs").."/api.lua")
|
|
|
|
dofile(minetest.get_modpath("mcl_stairs").."/register.lua")
|
|
|
|
dofile(minetest.get_modpath("mcl_stairs").."/crafting.lua")
|
2017-06-05 20:21:14 +03:00
|
|
|
dofile(minetest.get_modpath("mcl_stairs").."/alias.lua")
|