aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/Autoload/SaveManager.gd
diff options
context:
space:
mode:
author hop311 <hop3114@gmail.com>2024-03-03 17:39:08 +0100
committer hop311 <hop3114@gmail.com>2024-03-03 17:39:08 +0100
commite2077a0d93be8b2dd48f1ee680809420f1f690d7 (patch)
treebacc8f4094eff5514a94b3852e9cec9c28391669 /game/src/Game/Autoload/SaveManager.gd
parent9ee1940ac3d15aa4c0a87b84d1c4ab8958184f63 (diff)
Add types to GDScript for-loop variablesfor-loop-types
Diffstat (limited to 'game/src/Game/Autoload/SaveManager.gd')
-rw-r--r--game/src/Game/Autoload/SaveManager.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/Game/Autoload/SaveManager.gd b/game/src/Game/Autoload/SaveManager.gd
index eead63c..688e163 100644
--- a/game/src/Game/Autoload/SaveManager.gd
+++ b/game/src/Game/Autoload/SaveManager.gd
@@ -16,7 +16,7 @@ func _ready() -> void:
DirAccess.make_dir_recursive_absolute(saves_dir_path)
var saves_dir := DirAccess.open(saves_dir_path)
- for file in saves_dir.get_files():
+ for file : String in saves_dir.get_files():
var save := SaveResource.new()
save.load_save(saves_dir_path.path_join(file))
add_or_replace_save(save, true)