KEngine.KAsync._CoWaitForSeconds C# (CSharp) 메소드

_CoWaitForSeconds() 개인적인 메소드

private _CoWaitForSeconds ( float time, System.Action next ) : IEnumerator
time float
next System.Action
리턴 IEnumerator
        private IEnumerator _CoWaitForSeconds(float time, Action next)
        {
            yield return new WaitForSeconds(time);
            next();
        }