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();
        }