mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
9 lines
162 B
Lua
9 lines
162 B
Lua
local module = {}
|
|
|
|
function module.on_world_update()
|
|
if GameGetFrameNum() % 60 == 0 then
|
|
GamePrint("Hi from api example!")
|
|
end
|
|
end
|
|
|
|
return module
|