mirror of
https://gitlab.com/lunovox/computing.git
synced 2025-03-15 06:31:22 +00:00
30 lines
869 B
Lua
30 lines
869 B
Lua
modComputing = {
|
|
modname = core.get_current_modname(),
|
|
modpath = core.get_modpath(core.get_current_modname()),
|
|
}
|
|
|
|
dofile(modComputing.modpath.."/translate.lua")
|
|
dofile(modComputing.modpath.."/api.lua")
|
|
dofile(modComputing.modpath.."/functions.lua")
|
|
dofile(modComputing.modpath.."/item_smartphone.lua")
|
|
|
|
|
|
--[[
|
|
local timeCount = 0
|
|
core.register_globalstep(function(dtime)
|
|
timeCount = timeCount + dtime
|
|
--modComputing.debug("[debug] core.register_globalstep() timeCount = "..timeCount)
|
|
if timeCount >= 5 then
|
|
timeCount = 0
|
|
--modComputing.debug("[debug] core.register_globalstep()")
|
|
modComputing.add_app_test()
|
|
end
|
|
end)
|
|
--]]
|
|
modComputing.add_app_test("CAFÉ")
|
|
modComputing.add_app_test("LEITE")
|
|
modComputing.add_app_test("SUCO")
|
|
modComputing.add_app_test("AÇUCAR")
|
|
|
|
|
|
core.log('action',"[MOD] "..modComputing.modname.." loaded!")
|