ona/debug/app.ona
kayomn b0c34d11b6
All checks were successful
continuous-integration/drone/push Build is passing
First pass of Ona middleware API
2023-11-20 21:39:42 +00:00

21 lines
243 B
Plaintext

let events = @import("events")
var timer = 0
events.on_update(lambda (dt):
timer = timer + dt
if (timer > 1):
@print("test")
timer = 0
end
end)
return {
.title = "Game",
.res_width = 1280,
.res_height = 800,
.tick_rate = 60,
}