private void OnPlayServicesError(PlayServiceError err) { Logger.Log(err); throw new Exception($"Error opening Android cloud saves. {err}"); }
/// <summary> /// Failed opening an Android cloud save. /// </summary> /// <param name="err"></param> /// <param name="fileName"></param> /// <param name="cloudLoadStatus"></param> private void OnPlayServicesError(PlayServiceError err, string fileName, CloudLoadStatus cloudLoadStatus) { Logger.Log(err); cloudLoadStatus.Loaded(fileName); throw new Exception($"Error opening Android cloud saves. {err}"); }