This repository has been archived on 2023-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
MineClone2/mods/ITEMS/mcl_stairs/init.lua

15 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")