This repository has been archived on 2024-12-09. You can view files and clone it, but cannot push or open issues or pull requests.
Mineclonia/mods/ITEMS/mcl_stairs/init.lua
2018-05-29 13:25:25 +02:00

14 lines
456 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").."/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")