76a9ccfc85
Wohooo!
13 lines
244 B
Lua
13 lines
244 B
Lua
local current_modname = minetest.get_current_modname()
|
|
local path = minetest.get_modpath(current_modname)
|
|
|
|
do
|
|
local test = dofile(path.."/tests/rotate.lua")
|
|
test()
|
|
end
|
|
|
|
do
|
|
local test = dofile(path.."/tests/flip.lua")
|
|
test()
|
|
end
|