fix: CoroutineManager not implementing ICoroutineManager interface

This commit is contained in:
2026-04-16 11:01:09 +03:00
parent 0767e00bde
commit ab2f637f78

View File

@@ -5,7 +5,7 @@ using Engine.Core.Debug;
namespace Engine.Core; namespace Engine.Core;
public class CoroutineManager : Behaviour, IUpdate public class CoroutineManager : Behaviour, IUpdate, ICoroutineManager
{ {
private readonly List<IEnumerator> enumerators = []; private readonly List<IEnumerator> enumerators = [];