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.

OSXStoreBindings.cs 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. namespace UnityEngine.Purchasing
  3. {
  4. internal class OSXStoreBindings : INativeAppleStore
  5. {
  6. public void SetUnityPurchasingCallback(UnityPurchasingCallback AsyncCallback)
  7. {
  8. throw new NotImplementedException();
  9. }
  10. public void RestoreTransactions()
  11. {
  12. throw new NotImplementedException();
  13. }
  14. public void RefreshAppReceipt()
  15. {
  16. throw new NotImplementedException();
  17. }
  18. public void AddTransactionObserver()
  19. {
  20. throw new NotImplementedException();
  21. }
  22. public void SetApplicationUsername(string applicationUsername)
  23. {
  24. throw new NotImplementedException();
  25. }
  26. public void RetrieveProducts(string json)
  27. {
  28. throw new NotImplementedException();
  29. }
  30. public void Purchase(string productJSON, string developerPayload)
  31. {
  32. throw new NotImplementedException();
  33. }
  34. public void FinishTransaction(string productJSON, string transactionID)
  35. {
  36. throw new NotImplementedException();
  37. }
  38. public string appReceipt => throw new NotImplementedException();
  39. public double appReceiptModificationDate => throw new NotImplementedException();
  40. public bool canMakePayments => throw new NotImplementedException();
  41. public bool simulateAskToBuy
  42. {
  43. get => throw new NotImplementedException();
  44. set => throw new NotImplementedException();
  45. }
  46. public void FetchStorePromotionOrder()
  47. {
  48. throw new NotImplementedException();
  49. }
  50. public void SetStorePromotionOrder(string json)
  51. {
  52. throw new NotImplementedException();
  53. }
  54. public void FetchStorePromotionVisibility(string productId)
  55. {
  56. throw new NotImplementedException();
  57. }
  58. public void SetStorePromotionVisibility(string productId, string visibility)
  59. {
  60. throw new NotImplementedException();
  61. }
  62. public string GetTransactionReceiptForProductId(string productId)
  63. {
  64. throw new NotImplementedException();
  65. }
  66. public void InterceptPromotionalPurchases()
  67. {
  68. throw new NotImplementedException();
  69. }
  70. public void ContinuePromotionalPurchases()
  71. {
  72. throw new NotImplementedException();
  73. }
  74. public void PresentCodeRedemptionSheet()
  75. {
  76. throw new NotImplementedException();
  77. }
  78. }
  79. }