2017-06-05 18:40:56 +02:00
|
|
|
-- Minetest 0.4 mod: mcl_stairs
|
2015-06-29 19:55:56 +02:00
|
|
|
-- See README.txt for licensing and other information.
|
2017-01-16 12:46:51 +01:00
|
|
|
|
|
|
|
-- Global namespace for functions
|
|
|
|
|
2017-06-05 18:40:56 +02:00
|
|
|
mcl_stairs = {}
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-06-05 19:11:01 +02:00
|
|
|
-- Load other files
|
2017-06-05 15:41:42 +02:00
|
|
|
|
2021-05-29 16:12:33 +02:00
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
|
|
|
dofile(modpath.."/api.lua")
|
|
|
|
dofile(modpath.."/cornerstair.lua")
|
|
|
|
dofile(modpath.."/register.lua")
|
|
|
|
dofile(modpath.."/crafting.lua")
|
|
|
|
dofile(modpath.."/alias.lua")
|