summaryrefslogtreecommitdiff
path: root/scenes/microgames/fishin/fishin.gd
diff options
context:
space:
mode:
Diffstat (limited to 'scenes/microgames/fishin/fishin.gd')
-rw-r--r--scenes/microgames/fishin/fishin.gd2
1 files changed, 2 insertions, 0 deletions
diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd
index c3d6c78..d52e449 100644
--- a/scenes/microgames/fishin/fishin.gd
+++ b/scenes/microgames/fishin/fishin.gd
@@ -14,6 +14,7 @@ enum FishType {
}
signal win(fish_type: FishType)
+signal lose
signal fish_chosen(fish_sprite: Sprite2D, fish_name: String)
const IN_GAME_WAIT_TIME = 10
@@ -200,6 +201,7 @@ func _on_in_game_timeout() -> void:
$"Fart".play()
get_window().title = "🙂👎"
+ lose.emit()
func _on_success_fail_timeout() -> void: