Files
pomchronicles/main_panel.gd
2025-07-10 14:19:17 -04:00

13 lines
201 B
GDScript

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)