This coroutine manager allows for nested IEnumerators, however it is experimental at the moment.
10 lines
194 B
C#
10 lines
194 B
C#
using System.Collections;
|
|
|
|
namespace Engine.Core;
|
|
|
|
public interface ICoroutineManager
|
|
{
|
|
IEnumerator StartCoroutine(IEnumerator enumerator);
|
|
void StopCoroutine(IEnumerator enumerator);
|
|
}
|