SocialManager.Logout C# (CSharp) Method

Logout() public method

public Logout ( ) : void
return void
    public void Logout()
    {
        #if (UNITY_IPHONE || UNITY_ANDROID)
        if (Social.localUser.authenticated) {
            StartCoroutine(LogoutCo());
        }
        #endif
    }