void setConnectionStateFailed(string json)
 {
     if (setConnectionStateFailedEvent != null)
     {
         setConnectionStateFailedEvent(P31Error.errorFromJson(json));
     }
 }
Esempio n. 2
0
 void loadSavedGameDataFailed(string error)
 {
     if (loadSavedGameDataFailedEvent != null)
     {
         loadSavedGameDataFailedEvent(P31Error.errorFromJson(error));
     }
 }
Esempio n. 3
0
 void saveGameFailed(string error)
 {
     if (saveGameFailedEvent != null)
     {
         saveGameFailedEvent(P31Error.errorFromJson(error));
     }
 }
 void loadPlayersWithConnectionStateFailed(string json)
 {
     if (loadPlayersWithConnectionStateFailedEvent != null)
     {
         loadPlayersWithConnectionStateFailedEvent(P31Error.errorFromJson(json));
     }
 }
Esempio n. 5
0
 void deleteSavedGameFailed(string error)
 {
     if (deleteSavedGameFailedEvent != null)
     {
         deleteSavedGameFailedEvent(P31Error.errorFromJson(error));
     }
 }
Esempio n. 6
0
 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));
     }
 }
Esempio n. 10
0
 void createSessionFailed(string json)
 {
     if (createSessionFailedEvent != null)
     {
         createSessionFailedEvent(P31Error.errorFromJson(json));
     }
 }
Esempio n. 11
0
 void productPurchaseError(string json)
 {
     if (purchaseErrorEvent != null)
     {
         purchaseErrorEvent(P31Error.errorFromJson(json));
     }
 }
Esempio n. 12
0
 void removeSessionWithIdentifierSucceeded(string jsonOrEmptyString)
 {
     if (string.IsNullOrEmpty(jsonOrEmptyString))
     {
         removeSessionWithIdentifierSucceededEvent.fire();
     }
     else
     {
         removeSessionWithIdentifierFailedEvent.fire(P31Error.errorFromJson(jsonOrEmptyString));
     }
 }
Esempio n. 13
0
 public void shareDialogFailed(string json)
 {
     shareDialogFailedEvent.fire(P31Error.errorFromJson(json));
 }
Esempio n. 14
0
 public void gameDialogFailed(string json)
 {
     FacebookManager.gameDialogFailedEvent.fire(P31Error.errorFromJson(json));
 }
Esempio n. 15
0
 public void graphRequestFailed(string json)
 {
     FacebookManager.graphRequestFailedEvent.fire(P31Error.errorFromJson(json));
 }
Esempio n. 16
0
 public void loginFailed(string json)
 {
     FacebookManager.loginFailedEvent.fire(P31Error.errorFromJson(json));
     MsgHandler.Handle("ShowPlatformLogin", new object[0]);
 }
Esempio n. 17
0
 void clearBadgeForPlayersFailed(string json)
 {
     clearBadgeForPlayersFailedEvent.fire(P31Error.errorFromJson(json));
 }
Esempio n. 18
0
 void sendMessageFailed(string json)
 {
     sendMessageFailedEvent.fire(P31Error.errorFromJson(json));
 }
Esempio n. 19
0
 public void dialogFailedWithError(string json)
 {
     dialogFailedEvent.fire(P31Error.errorFromJson(json));
 }
Esempio n. 20
0
 public void graphRequestFailed(string json)
 {
     graphRequestFailedEvent.fire(P31Error.errorFromJson(json));
 }
Esempio n. 21
0
 public void reauthorizationFailed(string json)
 {
     reauthorizationFailedEvent.fire(P31Error.errorFromJson(json));
 }
Esempio n. 22
0
 public void loginFailed(string json)
 {
     loginFailedEvent.fire(P31Error.errorFromJson(json));
 }