ona/debug/app.ona

21 lines
238 B
Plaintext
Raw Normal View History

let ona = @import("ona")
2023-05-23 23:22:29 +00:00
var timer = 0
2023-11-05 12:25:16 +00:00
ona.on_update(lambda (dt):
timer = timer + dt
2023-11-05 12:25:16 +00:00
if (timer > 1):
@print("test hello world")
2023-11-04 11:30:45 +00:00
timer = 0
end
end)
2023-11-04 11:30:45 +00:00
2023-08-22 23:49:23 +01:00
return {
.title = "Game",
.width = 1280,
.height = 800,
.tick_rate = 60,
2023-05-23 23:22:29 +00:00
}