commonlib/init.lua
2013-02-20 13:10:09 +00:00

16 lines
782 B
Lua

-- CommonLib
-- by Rubenwardy
-------------------------------------------------------------------------------
-- Adds common functions that help minetest modders achieve
-- perfection in both their mod, and in interacting with other mods
-------------------------------------------------------------------------------
-- #### init.lua
-- load the modules
-------------------------------------------------------------------------------
dofile(minetest.get_modpath("commonlib").."/mod.lua")
dofile(minetest.get_modpath("commonlib").."/player.lua")
dofile(minetest.get_modpath("commonlib").."/vector.lua")
dofile(minetest.get_modpath("commonlib").."/vector_calc.lua")
dofile(minetest.get_modpath("commonlib").."/vector_cmp.lua")
dofile(minetest.get_modpath("commonlib").."/world.lua")