summaryrefslogtreecommitdiff
path: root/Scenes/Global.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Scenes/Global.gd')
-rw-r--r--Scenes/Global.gd6
1 files changed, 6 insertions, 0 deletions
diff --git a/Scenes/Global.gd b/Scenes/Global.gd
index 09c935a..84717d1 100644
--- a/Scenes/Global.gd
+++ b/Scenes/Global.gd
@@ -10,6 +10,12 @@ onready var max_crystals = 0
signal update_ui
+func reset():
+ turns = STARTING_TURNS
+ current_stage = 0
+ active_crystals = 0
+ max_crystals = 0
+
func set_turns(t):
turns = t
emit_signal("update_ui")