marathon mode skeleton

This commit is contained in:
Haze Weathers 2023-12-29 15:26:02 -05:00
parent 6bd0a81f11
commit 22a53ee1a0
9 changed files with 147 additions and 13 deletions

14
menus/marathon_results.gd Normal file
View file

@ -0,0 +1,14 @@
extends Control
onready var score: Label = $"%Score"
func _ready() -> void:
Fade.fade_in()
score.text = score.text % Game.marathon_score
func _input(event: InputEvent) -> void:
if Input.is_action_just_pressed("ui_accept"):
Game.change_map(load("res://menus/marathon_start.tscn"))