diff --git a/GFramework.Game/Storage/FileStorage.cs b/GFramework.Game/Storage/FileStorage.cs index e1140c6..383c029 100644 --- a/GFramework.Game/Storage/FileStorage.cs +++ b/GFramework.Game/Storage/FileStorage.cs @@ -1,4 +1,8 @@ -using GFramework.Core.Concurrency; +using System.IO; +using System.Text; +using GFramework.Core.Abstractions.Concurrency; +using GFramework.Core.Abstractions.Serializer; +using GFramework.Core.Concurrency; using GFramework.Game.Abstractions.Storage; namespace GFramework.Game.Storage; diff --git a/GFramework.Godot/Storage/GodotFileStorage.cs b/GFramework.Godot/Storage/GodotFileStorage.cs index ca46db7..1256520 100644 --- a/GFramework.Godot/Storage/GodotFileStorage.cs +++ b/GFramework.Godot/Storage/GodotFileStorage.cs @@ -1,6 +1,12 @@ +using System.IO; +using System.Text; using GFramework.Core.Abstractions.Concurrency; using GFramework.Core.Abstractions.Serializer; using GFramework.Core.Abstractions.Storage; +using GFramework.Core.Concurrency; +using GFramework.Godot.Extensions; +using Godot; +using FileAccess = Godot.FileAccess; namespace GFramework.Godot.Storage;