mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 15:00:45 +01:00
13 lines
380 B
Lua
13 lines
380 B
Lua
local modpath = minetest.get_modpath("technic_cnc")
|
|
|
|
technic_cnc = {}
|
|
|
|
technic_cnc.technic_modpath = minetest.get_modpath("technic")
|
|
|
|
technic_cnc.use_technic = technic_cnc.technic_modpath
|
|
and minetest.settings:get_bool("technic_cnc_use_technic") ~= false
|
|
|
|
dofile(modpath.."/cnc.lua")
|
|
dofile(modpath.."/cnc_api.lua")
|
|
dofile(modpath.."/cnc_materials.lua")
|