Mineclonia/mods/ITEMS/mcl_stairs/init.lua

15 lines
456 B
Lua
Raw Normal View History

2017-06-05 16:40:56 +00:00
-- Minetest 0.4 mod: mcl_stairs
2015-06-29 17:55:56 +00:00
-- See README.txt for licensing and other information.
2017-01-16 11:46:51 +00:00
-- Global namespace for functions
2017-06-05 16:40:56 +00:00
mcl_stairs = {}
2015-06-29 17:55:56 +00:00
-- Load other files
2017-06-05 13:41:42 +00:00
dofile(minetest.get_modpath("mcl_stairs").."/api.lua")
2018-05-29 11:25:25 +00:00
dofile(minetest.get_modpath("mcl_stairs").."/cornerstair.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")