iOSStoreBindings.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. using System;
  2. namespace UnityEngine.Purchasing
  3. {
  4. internal class iOSStoreBindings : 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
  39. {
  40. get
  41. {
  42. throw new NotImplementedException();
  43. }
  44. }
  45. public bool canMakePayments
  46. {
  47. get
  48. {
  49. throw new NotImplementedException();
  50. }
  51. }
  52. public bool simulateAskToBuy
  53. {
  54. get
  55. {
  56. throw new NotImplementedException();
  57. }
  58. set
  59. {
  60. throw new NotImplementedException();
  61. }
  62. }
  63. public void FetchStorePromotionOrder()
  64. {
  65. throw new NotImplementedException();
  66. }
  67. public void SetStorePromotionOrder(string json)
  68. {
  69. throw new NotImplementedException();
  70. }
  71. public void FetchStorePromotionVisibility(string productId)
  72. {
  73. throw new NotImplementedException();
  74. }
  75. public void SetStorePromotionVisibility(string productId, string visibility)
  76. {
  77. throw new NotImplementedException();
  78. }
  79. public string GetTransactionReceiptForProductId(string productId)
  80. {
  81. throw new NotImplementedException();
  82. }
  83. public void InterceptPromotionalPurchases()
  84. {
  85. throw new NotImplementedException();
  86. }
  87. public void ContinuePromotionalPurchases()
  88. {
  89. throw new NotImplementedException();
  90. }
  91. public void PresentCodeRedemptionSheet()
  92. {
  93. throw new NotImplementedException();
  94. }
  95. }
  96. }