diff options
Diffstat (limited to 'components/Settings.gd')
-rw-r--r-- | components/Settings.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/Settings.gd b/components/Settings.gd index c652b16..3bcb1a4 100644 --- a/components/Settings.gd +++ b/components/Settings.gd @@ -9,6 +9,8 @@ var difficulty = Difficulty.EASY ########## # LOADER # ########## +func _ready(): + randomize() onready var _file = File.new() const _SETTINGS_PATH = "user://settings.json" |