isogen-cd2025/init.lua

21 lines
539 B
Lua
Raw Permalink Normal View History

2024-05-16 19:15:01 +02:00
isogen = {}
local MP = minetest.get_modpath("isogen")
2024-05-19 11:24:40 +02:00
dofile(MP.."/common.lua")
2024-05-16 20:22:09 +02:00
dofile(MP.."/colors.lua")
2024-05-19 10:39:00 +02:00
dofile(MP.."/canvas.lua")
2024-05-19 10:41:34 +02:00
dofile(MP.."/draw_cube.lua")
dofile(MP.."/draw_map.lua")
2024-05-19 11:24:40 +02:00
dofile(MP.."/draw.lua")
2024-05-16 19:15:01 +02:00
2024-05-19 19:16:52 +02:00
if minetest.get_modpath("worldedit_commands") then
dofile(MP.."/chatcommand.lua")
end
2024-05-16 19:15:01 +02:00
if minetest.get_modpath("mtt") and mtt.enabled then
2024-05-19 11:24:40 +02:00
dofile(MP.."/common.spec.lua")
2024-05-16 20:22:09 +02:00
dofile(MP.."/colors.spec.lua")
2024-05-19 10:41:34 +02:00
dofile(MP.."/draw_cube.spec.lua")
dofile(MP.."/draw_map.spec.lua")
2024-05-19 11:24:40 +02:00
dofile(MP.."/draw.spec.lua")
2024-05-16 19:15:01 +02:00
end