aboutsummaryrefslogtreecommitdiff
path: root/game/src/GameSession/GameSession.gd
diff options
context:
space:
mode:
author Hop311 <hop3114@gmail.com>2023-04-18 19:49:37 +0200
committer Hop311 <hop3114@gmail.com>2023-04-18 19:49:37 +0200
commit1fdd198f943a41468b03b2cdc62c24147f707239 (patch)
treef53bdaad16e077957c7410a54f8638868d3f2351 /game/src/GameSession/GameSession.gd
parentf168c91ff266beda8066014257a30d93704882ee (diff)
Better province image + terrain + some buttons
Diffstat (limited to 'game/src/GameSession/GameSession.gd')
-rw-r--r--game/src/GameSession/GameSession.gd9
1 files changed, 2 insertions, 7 deletions
diff --git a/game/src/GameSession/GameSession.gd b/game/src/GameSession/GameSession.gd
index 38eaba1..fe83a8a 100644
--- a/game/src/GameSession/GameSession.gd
+++ b/game/src/GameSession/GameSession.gd
@@ -1,16 +1,11 @@
-extends Node
+extends Control
@export var _game_session_menu : Control
func _ready():
- print("GameSession 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
-
-# REQUIREMENTS:
-# * SS-64
-func _on_game_session_menu_close_button_pressed():
- _game_session_menu.hide()