예제 #1
0
    public void Revoke(bhClowdDriveAPI.revoke_Callback callback)
    {
        if (_revokeInProgress == true)
        {
            return;
        }

        _revoke_callback = callback;
        StartCoroutine(Revock_internal());
    }
예제 #2
0
    public void Revoke(bhClowdDriveAPI.revoke_Callback callback)
    {
        if (_type == eCloudType.NotSelected)
        {
            return;
        }

        switch (_type)
        {
        case eCloudType.bCloudDrive:
        {
            _bDriveAPI.Revoke(callback);
        }
        break;

        case eCloudType.GoogleDrive:
        {
            _bGoogleAPI.Revoke(callback);
        }
        break;
        }
        return;
    }
예제 #3
0
	public void Revoke(bhClowdDriveAPI.revoke_Callback callback){
		if (_revokeInProgress == true)
			return;

		_revoke_callback = callback;
		StartCoroutine (Revock_internal ());
	}