16 lines
782 B
Lua
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") |