From ab2f637f78e39f2193dacea5bad99c2a0fcff561 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Thu, 16 Apr 2026 11:01:09 +0300 Subject: [PATCH] fix: CoroutineManager not implementing ICoroutineManager interface --- Engine.Core/Systems/CoroutineManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine.Core/Systems/CoroutineManager.cs b/Engine.Core/Systems/CoroutineManager.cs index 4c6be18..37bff8c 100644 --- a/Engine.Core/Systems/CoroutineManager.cs +++ b/Engine.Core/Systems/CoroutineManager.cs @@ -5,7 +5,7 @@ using Engine.Core.Debug; namespace Engine.Core; -public class CoroutineManager : Behaviour, IUpdate +public class CoroutineManager : Behaviour, IUpdate, ICoroutineManager { private readonly List enumerators = [];