aboutsummaryrefslogtreecommitdiff
path: root/game/src/GameSession/GameSession.gd
blob: 0d69bf2ebbb293f4ae2fe659257a549225c65792 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extends Control

@export var _game_session_menu : Control

func _ready():
   print("GameSession ready")

# REQUIREMENTS:
# * SS-42
func _on_game_session_menu_button_pressed():
   _game_session_menu.visible = !_game_session_menu.visible

# REQUIREMENTS:
# * SS-64
func _on_game_session_menu_close_button_pressed():
   _game_session_menu.hide()