暫無描述
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.

PurchaseProcessingResult.cs 814B

1234567891011121314151617181920212223242526
  1. namespace UnityEngine.Purchasing
  2. {
  3. /// <summary>
  4. /// Informs Unity Purchasing as to whether an Application
  5. /// has finished processing a purchase.
  6. /// </summary>
  7. public enum PurchaseProcessingResult
  8. {
  9. /// <summary>
  10. /// The application has finished processing the purchase.
  11. ///
  12. /// Unity Purchasing should not inform the application of this
  13. /// transaction again.
  14. /// </summary>
  15. Complete,
  16. /// <summary>
  17. /// The application has not finished processing the purchase,
  18. /// eg it is pushing it to a server asynchronously.
  19. ///
  20. /// Unity Purchasing should continue to send the application notifications
  21. /// about this transaction when it starts.
  22. /// </summary>
  23. Pending
  24. }
  25. }