Initial commit

This commit is contained in:
2025-07-10 14:19:17 -04:00
commit 6a62821337
31 changed files with 1246 additions and 0 deletions

12
main_panel.gd Normal file
View File

@@ -0,0 +1,12 @@
extends PanelContainer
signal time_changed(time : float)
@onready var timer : Timer = $Timer
func _ready() -> void:
$Pass
func _process(delta: float) -> void:
time_changed.emit(timer.time_left)