Exemple #1
0
 public void ReportProgress(string id, double progress, Action <bool> callback)
 {
     if (!this.VerifyAuthentication())
     {
         if (callback != null)
         {
             callback(false);
         }
     }
     else
     {
         GameCenterPlatform.InternalReportProgress(id, progress, callback);
     }
 }