computing/init.lua

15 lines
414 B
Lua
Raw Normal View History

2024-11-18 10:02:54 -03:00
modComputing = {
modname = core.get_current_modname(),
modpath = core.get_modpath(core.get_current_modname()),
}
2024-11-18 16:28:19 -03:00
dofile(modComputing.modpath.."/translate.lua")
2024-11-18 10:02:54 -03:00
dofile(modComputing.modpath.."/api.lua")
dofile(modComputing.modpath.."/functions.lua")
dofile(modComputing.modpath.."/item_smartphone.lua")
2024-11-18 10:02:54 -03:00
2024-11-19 14:03:41 -03:00
--modComputing.add_test_apps()
2024-11-18 10:02:54 -03:00
core.log('action',"[MOD] "..modComputing.modname.." loaded!")