diff --git a/GlitchyEditor/src/EditorContentManager.bf b/GlitchyEditor/src/EditorContentManager.bf index d25d9d8..4329778 100644 --- a/GlitchyEditor/src/EditorContentManager.bf +++ b/GlitchyEditor/src/EditorContentManager.bf @@ -26,9 +26,9 @@ class EditorContentManager : IContentManager private append Dictionary _handleToAsset = .(); - private append AssetHierarchy _assetHierarchy = .(this); - private append AssetCache _assetCache = .(this); - private append AssetConverter _assetConverter = .(this); + private AssetHierarchy _assetHierarchy = new .(this) ~ delete _; + private AssetCache _assetCache = new .(this) ~ delete _; + private AssetConverter _assetConverter = new .(this) ~ delete _; private append List _reloadQueue = .();