mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 15:13:16 +00:00
10 lines
162 B
Lua
10 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
|