outback/mods/default/init.lua
2017-08-22 12:41:42 +10:00

15 lines
396 B
Lua

-- Minetest 0.4 mod: default
-- See README.txt for licensing and other information.
-- The API documentation in here was moved into game_api.txt
-- Definitions made by this mod that other mods can use too
default = {}
-- Load files
local default_path = minetest.get_modpath("default")
dofile(default_path.."/trees.lua")
dofile(default_path.."/nodes.lua")
dofile(default_path.."/aliases.lua")