No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IUnityCallback.cs 400B

123456789101112131415
  1. using System;
  2. namespace UnityEngine.Purchasing
  3. {
  4. /// <summary>
  5. /// JSON based Native callback interface.
  6. /// </summary>
  7. internal interface IUnityCallback
  8. {
  9. void OnSetupFailed(String json);
  10. void OnProductsRetrieved(String json);
  11. void OnPurchaseSucceeded(String id, String receipt, String transactionID);
  12. void OnPurchaseFailed(String json);
  13. }
  14. }