From cef940108fe15752c3ef66f43f5169403fa2f71d Mon Sep 17 00:00:00 2001 From: Spartan322 Date: Sat, 3 Jun 2023 14:37:10 -0400 Subject: Reorganize the file structure of the files in `game/src` --- game/src/GameMenu.gd | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 game/src/GameMenu.gd (limited to 'game/src/GameMenu.gd') diff --git a/game/src/GameMenu.gd b/game/src/GameMenu.gd deleted file mode 100644 index 4b589f9..0000000 --- a/game/src/GameMenu.gd +++ /dev/null @@ -1,47 +0,0 @@ -extends Control - -@export var _main_menu : Control -@export var _options_menu : Control -@export var _lobby_menu : Control -@export var _credits_menu : Control - -# REQUIREMENTS -# * SS-10 -func _ready(): - Events.Options.load_settings_from_file() - -func _on_main_menu_new_game_button_pressed(): - _lobby_menu.show() - _main_menu.hide() - -# REQUIREMENTS -# * SS-6 -# * UIFUN-5 -func _on_main_menu_options_button_pressed(): - _options_menu.show() - _main_menu.hide() - - -func _on_options_menu_back_button_pressed(): - _main_menu.show() - _options_menu.hide() - - -func _on_lobby_menu_back_button_pressed(): - _main_menu.show() - _lobby_menu.hide() - - -func _on_credits_back_button_pressed(): - _credits_menu.hide() - _main_menu.show() - - -func _on_main_menu_credits_button_pressed(): - _credits_menu.show() - _main_menu.hide() - - - -func _on_splash_container_splash_end(): - show() -- cgit v1.2.3-56-ga3b1