Timer and Day modules
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-03-03 19:51:22 +01:00
parent 41eea638c0
commit 03b6567c08
11 changed files with 135 additions and 98 deletions

View File

@@ -19,11 +19,12 @@ function TIC()
cls(Config.colors.black)
local handler = Window.get_current_handler() -- Get handler from Window manager
if handler then
handler()
handler()
end
Meter.update()
Timer.update()
if Context.game_in_progress then
UI.draw_meters()
UI.draw_timer()
UI.draw_meters()
Timer.draw()
end
end
end