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.
 
 
 

20 lines
312 B

  1. using System;
  2. namespace CIG
  3. {
  4. public enum IAPStorePurchaseFailedError
  5. {
  6. ProductNull,
  7. StoreLoadingError,
  8. StoreNull,
  9. PurchasingUnavailable,
  10. ExistingPurchasePending,
  11. ProductUnavailable,
  12. SignatureInvalid,
  13. UserCancelled,
  14. PaymentDeclined,
  15. DuplicateTransaction,
  16. Unknown
  17. }
  18. }