Exemplo n.º 1
0
 public void queryInventoryFailed(string error)
 {
     ActionExtensions.fire <string>(queryInventoryFailedEvent, error);
 }
Exemplo n.º 2
0
 public void purchaseSucceeded(string json)
 {
     ActionExtensions.fire <GooglePurchase>(purchaseSucceededEvent, new GooglePurchase(JsonExtensions.dictionaryFromJson(json)));
 }
Exemplo n.º 3
0
 public void billingSupported(string empty)
 {
     ActionExtensions.fire(billingSupportedEvent);
 }
Exemplo n.º 4
0
 public void consumePurchaseFailed(string error)
 {
     ActionExtensions.fire <string>(consumePurchaseFailedEvent, error);
 }
Exemplo n.º 5
0
 public void billingNotSupported(string error)
 {
     ActionExtensions.fire <string>(billingNotSupportedEvent, error);
 }