Beispiel #1
0
 void Awake()
 {
     appstore = mAppstore;
     if (mAppstore == Appstore.Default)
     {
         appstoreName = "default";
     }
     else
     {
         appstoreName = Enum.GetName(typeof(Appstore), mAppstore);
     }
 }
Beispiel #2
0
 void OnAppstoreProductPurchaseFailed(string errorXml)
 {
     Appstore.OnPurchaseFailed(errorXml);
 }
Beispiel #3
0
 void OnAppstoreProductPurchaseCancelled(string productIdentifier)
 {
     Appstore.OnPurchaseCancelled(productIdentifier);
 }
Beispiel #4
0
 void OnAppstoreProductPurchaseComplete(string purchaseXml)
 {
     Appstore.OnPurchaseComplete(purchaseXml);
 }
Beispiel #5
0
 void OnAppstoreRequestProductDataInvalidProductId(string invalidProductId)
 {
     Appstore.OnInvalidProductId(invalidProductId);
 }
Beispiel #6
0
 void OnAppstoreProductData(string productDataXml)
 {
     Appstore.OnProductData(productDataXml);
 }