lunch timeee

This commit is contained in:
Tabby 2025-05-17 14:41:41 +10:00
parent ecd9ebd486
commit d725e1a0cf
7 changed files with 133 additions and 7 deletions

View file

@ -14,6 +14,7 @@ signal update_data(score : int, lives : int)
signal skip_intro
signal start_platformer
signal end_platformer
signal game_over
@export var broken_tv_remote : Texture
var are_we_skipping_intro : bool = false
@ -53,3 +54,6 @@ func actually_gaming():
func send_update_data(score : int, lives: int):
update_data.emit(score, lives)
func send_game_over():
game_over.emit()