diff --git a/GFramework.Godot/assets/AbstractResourceFactorySystem.cs b/GFramework.Godot/assets/AbstractResourceFactorySystem.cs index fe6ebd3..d30ff0d 100644 --- a/GFramework.Godot/assets/AbstractResourceFactorySystem.cs +++ b/GFramework.Godot/assets/AbstractResourceFactorySystem.cs @@ -1,3 +1,4 @@ +using System; using GFramework.Core.Abstractions.enums; using GFramework.Core.extensions; using GFramework.Core.system; @@ -64,7 +65,7 @@ public abstract class AbstractResourceFactorySystem : AbstractSystem, IResourceF protected override void OnInit() { _registry = new ResourceFactory.Registry(); - _assetCatalogSystem = this.GetSystem(); + _resourceLoadSystem = this.GetSystem(); _assetCatalogSystem = this.GetSystem(); }