12345678910111213141516171819 |
- namespace UnityEngine.Purchasing
- {
- /// <summary>
- /// A purchase that succeeded, including the purchased product
- /// along with its purchase receipt.
- /// </summary>
- public class PurchaseEventArgs
- {
- internal PurchaseEventArgs(Product purchasedProduct)
- {
- this.purchasedProduct = purchasedProduct;
- }
-
- /// <summary>
- /// The product which was purchased successfully.
- /// </summary>
- public Product purchasedProduct { get; private set; }
- }
- }
|