Assets.Scripts.Utils.Social.SocialLink.OpenUrlCoroutine C# (CSharp) Method

OpenUrlCoroutine() private method

private OpenUrlCoroutine ( ) : IEnumerator
return IEnumerator
        private IEnumerator OpenUrlCoroutine()
        {
            _isLeftApp = false;
            Application.OpenURL(AppURL);
            yield return new WaitForSeconds(WaitingHackDelay);
            if (!_isLeftApp)
                Application.OpenURL(URL);
        }