9 lines
215 B
Lua
9 lines
215 B
Lua
|
|
-- this whole mod is just a thin wrapper around https://github.com/davidm/lua-matrix
|
|
|
|
local mod_path = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
matrix = dofile(mod_path .. "/matrix.lua")
|
|
|
|
-- that's it
|