Beispiel #1
0
 public static void AcceptCashChallengeUseNativeErrorDialogue(string challengeId, SuccessHandler success, SuccessHandler errorDialogueComplete)
 {
     nativeDialogCallback = errorDialogueComplete;
     ArbiterBinding.AcceptCashChallenge(challengeId, success, ShowDescriptionInNativeAlert);
 }
Beispiel #2
0
    public static void AcceptCashChallenge(string challengeId, SuccessHandler success, FriendlyErrorHandler failure)
    {
        CodedErrorHandler failWrapper = (c, e, d) => { failure(e, d); };

        ArbiterBinding.AcceptCashChallenge(challengeId, success, failWrapper);
    }
Beispiel #3
0
 public static void AcceptCashChallenge(string challengeId, SuccessHandler success, FriendlyErrorHandler failure)
 {
     ArbiterBinding.AcceptCashChallenge(challengeId, success, failure);
 }