void setConnectionStateFailed(string json)
 {
     if (setConnectionStateFailedEvent != null)
     {
         setConnectionStateFailedEvent(P31Error.errorFromJson(json));
     }
 }
 void loadSavedGameDataFailed(string error)
 {
     if (loadSavedGameDataFailedEvent != null)
     {
         loadSavedGameDataFailedEvent(P31Error.errorFromJson(error));
     }
 }
 void saveGameFailed(string error)
 {
     if (saveGameFailedEvent != null)
     {
         saveGameFailedEvent(P31Error.errorFromJson(error));
     }
 }
 void loadPlayersWithConnectionStateFailed(string json)
 {
     if (loadPlayersWithConnectionStateFailedEvent != null)
     {
         loadPlayersWithConnectionStateFailedEvent(P31Error.errorFromJson(json));
     }
 }
 void deleteSavedGameFailed(string error)
 {
     if (deleteSavedGameFailedEvent != null)
     {
         deleteSavedGameFailedEvent(P31Error.errorFromJson(error));
     }
 }
 void fetchSavedGamesFailed(string error)
 {
     if (fetchSavedGamesFailedEvent != null)
     {
         fetchSavedGamesFailedEvent(P31Error.errorFromJson(error));
     }
 }
 void loadDataFailed(string json)
 {
     if (loadDataFailedEvent != null)
     {
         loadDataFailedEvent(P31Error.errorFromJson(json));
     }
 }
 void saveDataFailed(string json)
 {
     if (saveDataFailedEvent != null)
     {
         saveDataFailedEvent(P31Error.errorFromJson(json));
     }
 }
 void loadSessionWidthIdentifierFailed(string json)
 {
     if (loadSessionWidthIdentifierFailedEvent != null)
     {
         loadSessionWidthIdentifierFailedEvent(P31Error.errorFromJson(json));
     }
 }
 void createSessionFailed(string json)
 {
     if (createSessionFailedEvent != null)
     {
         createSessionFailedEvent(P31Error.errorFromJson(json));
     }
 }
Example #11
0
 void productPurchaseError(string json)
 {
     if (purchaseErrorEvent != null)
     {
         purchaseErrorEvent(P31Error.errorFromJson(json));
     }
 }
 void removeSessionWithIdentifierSucceeded(string jsonOrEmptyString)
 {
     if (string.IsNullOrEmpty(jsonOrEmptyString))
     {
         removeSessionWithIdentifierSucceededEvent.fire();
     }
     else
     {
         removeSessionWithIdentifierFailedEvent.fire(P31Error.errorFromJson(jsonOrEmptyString));
     }
 }
Example #13
0
 public void shareDialogFailed(string json)
 {
     shareDialogFailedEvent.fire(P31Error.errorFromJson(json));
 }
Example #14
0
 public void gameDialogFailed(string json)
 {
     FacebookManager.gameDialogFailedEvent.fire(P31Error.errorFromJson(json));
 }
Example #15
0
 public void graphRequestFailed(string json)
 {
     FacebookManager.graphRequestFailedEvent.fire(P31Error.errorFromJson(json));
 }
Example #16
0
 public void loginFailed(string json)
 {
     FacebookManager.loginFailedEvent.fire(P31Error.errorFromJson(json));
     MsgHandler.Handle("ShowPlatformLogin", new object[0]);
 }
 void clearBadgeForPlayersFailed(string json)
 {
     clearBadgeForPlayersFailedEvent.fire(P31Error.errorFromJson(json));
 }
 void sendMessageFailed(string json)
 {
     sendMessageFailedEvent.fire(P31Error.errorFromJson(json));
 }
Example #19
0
 public void dialogFailedWithError(string json)
 {
     dialogFailedEvent.fire(P31Error.errorFromJson(json));
 }
Example #20
0
 public void graphRequestFailed(string json)
 {
     graphRequestFailedEvent.fire(P31Error.errorFromJson(json));
 }
Example #21
0
 public void reauthorizationFailed(string json)
 {
     reauthorizationFailedEvent.fire(P31Error.errorFromJson(json));
 }
Example #22
0
 public void loginFailed(string json)
 {
     loginFailedEvent.fire(P31Error.errorFromJson(json));
 }