isogen-cd2025/init.lua
Buckaroo Banzai ee35b4e2e5
add isogen.draw_map(pos1, pos2) (#3)
* add `isogen.draw_map(pos1, pos2)`

* draw_map test

---------

Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
2024-05-23 09:31:49 +02:00

21 lines
539 B
Lua

isogen = {}
local MP = minetest.get_modpath("isogen")
dofile(MP.."/common.lua")
dofile(MP.."/colors.lua")
dofile(MP.."/canvas.lua")
dofile(MP.."/draw_cube.lua")
dofile(MP.."/draw_map.lua")
dofile(MP.."/draw.lua")
if minetest.get_modpath("worldedit_commands") then
dofile(MP.."/chatcommand.lua")
end
if minetest.get_modpath("mtt") and mtt.enabled then
dofile(MP.."/common.spec.lua")
dofile(MP.."/colors.spec.lua")
dofile(MP.."/draw_cube.spec.lua")
dofile(MP.."/draw_map.spec.lua")
dofile(MP.."/draw.spec.lua")
end