示例#1
0
        public void RequestCardPurchasing()
        {
            if (_shopCardData.price.Length > 0)
            {
                _purchaser.BuyProductID(_shopCardData.cardName);
            }

            _shopCardData.PurchaseState = ECardState.Requested;
            _shopCardData.NotifyThatDataChanged();
        }