blob: fe83a8a514c57c7fcd8321d35d85855eefb6b55d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
extends Control
@export var _game_session_menu : Control
func _ready():
Events.Options.load_settings_from_file()
# REQUIREMENTS:
# * SS-42
func _on_game_session_menu_button_pressed():
_game_session_menu.visible = !_game_session_menu.visible
|