aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/GameSession/GameSession.gd
blob: f0850734b6145385df6c8c6f8c2e74b886b992e5 (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() -> void:
   Events.Options.load_settings_from_file()
   if GameSingleton.setup_game(0) != OK:
      push_error("Failed to setup game")

func _process(_delta : float) -> void:
   GameSingleton.try_tick()

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