aboutsummaryrefslogtreecommitdiff
path: root/game/src/LobbyMenu/LobbyMenu.gd
diff options
context:
space:
mode:
author Hop311 <hop3114@gmail.com>2023-03-04 19:06:05 +0100
committer Hop311 <hop3114@gmail.com>2023-03-04 19:06:05 +0100
commit3e088a2642d2d05eed011b2dd1bdee566225719f (patch)
tree4b80e3cbc20413f9b1ea57fed5a6f7a847328a29 /game/src/LobbyMenu/LobbyMenu.gd
parent3a46095b678d75292090802280ce9dbd3f2d24dc (diff)
Comments marking implemeneted requirements
Diffstat (limited to 'game/src/LobbyMenu/LobbyMenu.gd')
-rw-r--r--game/src/LobbyMenu/LobbyMenu.gd5
1 files changed, 3 insertions, 2 deletions
diff --git a/game/src/LobbyMenu/LobbyMenu.gd b/game/src/LobbyMenu/LobbyMenu.gd
index cc4bb05..873e2a2 100644
--- a/game/src/LobbyMenu/LobbyMenu.gd
+++ b/game/src/LobbyMenu/LobbyMenu.gd
@@ -11,6 +11,7 @@ signal save_game_selected
var start_button : BaseButton
# REQUIREMENTS:
+# * SS-16
# * UIFUN-40
func _on_back_button_button_down():
print("Returning to Main Menu.")
@@ -18,14 +19,14 @@ func _on_back_button_button_down():
# REQUIREMENTS:
-# * UIFUN-65
+# * SS-21
func _on_start_button_button_down():
print("Starting new game.")
get_tree().change_scene_to_file("res://src/SampleGame.tscn")
# REQUIREMENTS:
-# * UIFUN-61
+# * SS-19
func _on_game_select_list_item_selected(index):
print("Selected save game: ", index)
save_game_selected.emit(index)