STRINGS for easier text management

This commit is contained in:
Jennie Robinson Faber 2026-05-17 23:02:21 +01:00
parent 8e2a2d08f0
commit 352ab75841
13 changed files with 140 additions and 112 deletions

View file

@ -26,7 +26,6 @@ func _ready() -> void:
_barks.append(n)
EventBus.game_started.connect(_on_game_started)
EventBus.game_won.connect(_on_game_ended)
EventBus.game_lost.connect(_on_game_lost)
func _process(_delta: float) -> void:
if not playing:
@ -59,6 +58,3 @@ func _on_game_started() -> void:
func _on_game_ended() -> void:
stop()
func _on_game_lost(_reason) -> void:
stop()