예제 #1
0
 public void ReportScore(long score, string board, Action <bool> callback)
 {
     if (!this.VerifyAuthentication())
     {
         if (callback != null)
         {
             callback(false);
         }
     }
     else
     {
         GameCenterPlatform.Internal_ReportScore(score, board, callback);
     }
 }