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.
 
 
 

47 line
965 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CI.WSANative.IAPStore
  4. {
  5. public static class WSANativeStore
  6. {
  7. public static void EnableTestMode()
  8. {
  9. }
  10. public static void ReloadSimulator()
  11. {
  12. }
  13. public static void GetProductListings(Action<List<WSAProduct>> response)
  14. {
  15. }
  16. public static void PurchaseProduct(string id, Action<WSAPurchaseResult> response)
  17. {
  18. }
  19. public static void ReportConsumableProductFulfillment(string id, Guid transactionId, Action<WSAFulfillmentResult> response)
  20. {
  21. }
  22. public static void GetUnfulfilledConsumableProducts(Action<List<WSAUnfulfilledConsumable>> response)
  23. {
  24. }
  25. public static void PurchaseApp(Action<string> response)
  26. {
  27. }
  28. public static WSAProductLicense GetLicenseForApp()
  29. {
  30. return new WSAProductLicense();
  31. }
  32. public static WSAProductLicense GetLicenseForProduct(string id)
  33. {
  34. return new WSAProductLicense();
  35. }
  36. }
  37. }