aboutsummaryrefslogtreecommitdiff
path: root/game/src/GameSession/GameSession.gd
diff options
context:
space:
mode:
author Spartan322 <Megacake1234@gmail.com>2023-06-03 20:37:10 +0200
committer Spartan322 <Megacake1234@gmail.com>2023-06-03 20:37:10 +0200
commitcef940108fe15752c3ef66f43f5169403fa2f71d (patch)
treefe4de5a05830e3bddeae78f74f729503b7cee1e9 /game/src/GameSession/GameSession.gd
parent73e29d02e48739aba5ca5db1b9575c67e795400f (diff)
Reorganize the file structure of the files in `game/src`
Diffstat (limited to 'game/src/GameSession/GameSession.gd')
-rw-r--r--game/src/GameSession/GameSession.gd16
1 files changed, 0 insertions, 16 deletions
diff --git a/game/src/GameSession/GameSession.gd b/game/src/GameSession/GameSession.gd
deleted file mode 100644
index 5bb1c2f..0000000
--- a/game/src/GameSession/GameSession.gd
+++ /dev/null
@@ -1,16 +0,0 @@
-extends Control
-
-@export var _game_session_menu : Control
-
-func _ready():
- Events.Options.load_settings_from_file()
- if GameSingleton.setup_game() != OK:
- push_error("Failed to setup game")
-
-func _process(delta : float):
- GameSingleton.try_tick()
-
-# REQUIREMENTS:
-# * SS-42
-func _on_game_session_menu_button_pressed() -> void:
- _game_session_menu.visible = !_game_session_menu.visible