KEngine.KAsync._WaitForFrames C# (CSharp) Метод

_WaitForFrames() приватный Метод

private _WaitForFrames ( int frameCount, System.Action next ) : IEnumerator
frameCount int
next System.Action
Результат IEnumerator
        private IEnumerator _WaitForFrames(int frameCount, Action next)
        {
            for (var i = 0; i < frameCount; i++)
                yield return null;
            next();
        }