SmallJoker
2024-04-28 ba2bdf83684e92bc344a4d3c25548db673ab6130
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local modpath = minetest.get_modpath("technic_cnc")
 
technic_cnc = {}
 
technic_cnc.technic_modpath = minetest.get_modpath("technic")
technic_cnc.getter = minetest.get_translator("technic_cnc")
 
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")