diff options
author | bd <bdunahu@operationnull.com> | 2025-05-25 00:42:34 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-25 00:42:34 -0400 |
commit | 15724430070a17ffb4e0fe3a0c3faa8c82fe64e2 (patch) | |
tree | 6c10cca48fdfb8bf2d429989d9cd496c775bca37 /scripts/title.gd | |
parent | 6707c7331860d65eb0ac9bba56af34ea339026c9 (diff) |
Add game over screen, back to title, tower affordability indicators
Diffstat (limited to 'scripts/title.gd')
-rw-r--r-- | scripts/title.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/title.gd b/scripts/title.gd new file mode 100644 index 0000000..8242145 --- /dev/null +++ b/scripts/title.gd @@ -0,0 +1,5 @@ +extends Control + +func _input(event): + if event.is_action_pressed("ui_accept"): + get_tree().change_scene_to_file("res://scenes/game.tscn") |