Interface ICart
Represents a shopping cart that contains items to be purchased.
Namespace: UnityEngine.Purchasing
Assembly: Unity.Purchasing.dll
Syntax
public interface ICart
Methods
Items()
Gets the CartItems in the cart.
Declaration
IReadOnlyList<CartItem> Items()
Returns
Type | Description |
---|---|
IReadOnlyList<CartItem> | A read-only list of CartItems. |