123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- using System;
- namespace UnityEngine.Purchasing
- {
- internal class OSXStoreBindings : INativeAppleStore
- {
- public void SetUnityPurchasingCallback(UnityPurchasingCallback AsyncCallback)
- {
- throw new NotImplementedException();
- }
- public void RestoreTransactions()
- {
- throw new NotImplementedException();
- }
- public void RefreshAppReceipt()
- {
- throw new NotImplementedException();
- }
- public void AddTransactionObserver()
- {
- throw new NotImplementedException();
- }
- public void SetApplicationUsername(string applicationUsername)
- {
- throw new NotImplementedException();
- }
- public void RetrieveProducts(string json)
- {
- throw new NotImplementedException();
- }
- public void Purchase(string productJSON, string developerPayload)
- {
- throw new NotImplementedException();
- }
- public void FinishTransaction(string productJSON, string transactionID)
- {
- throw new NotImplementedException();
- }
- public string appReceipt
- {
- get
- {
- throw new NotImplementedException();
- }
- }
- public bool canMakePayments
- {
- get
- {
- throw new NotImplementedException();
- }
- }
- public bool simulateAskToBuy
- {
- get
- {
- throw new NotImplementedException();
- }
- set
- {
- throw new NotImplementedException();
- }
- }
- public void FetchStorePromotionOrder()
- {
- throw new NotImplementedException();
- }
- public void SetStorePromotionOrder(string json)
- {
- throw new NotImplementedException();
- }
- public void FetchStorePromotionVisibility(string productId)
- {
- throw new NotImplementedException();
- }
- public void SetStorePromotionVisibility(string productId, string visibility)
- {
- throw new NotImplementedException();
- }
- public string GetTransactionReceiptForProductId(string productId)
- {
- throw new NotImplementedException();
- }
- public void InterceptPromotionalPurchases()
- {
- throw new NotImplementedException();
- }
- public void ContinuePromotionalPurchases()
- {
- throw new NotImplementedException();
- }
- public void PresentCodeRedemptionSheet()
- {
- throw new NotImplementedException();
- }
- }
- }
|