noita_entangled_worlds/ew_api_example/module.lua

10 lines
162 B
Lua
Raw Normal View History

local module = {}
function module.on_world_update()
if GameGetFrameNum() % 60 == 0 then
GamePrint("Hi from api example!")
end
end
return module