Exemplo n.º 1
0
    // Token: 0x0600140C RID: 5132 RVA: 0x00073F38 File Offset: 0x00072138
    public IEnumerator StartGetShop()
    {
        yield return(ShopWebServiceClient.GetShop(delegate(UberStrikeItemShopClientView shop)
        {
            if (shop != null)
            {
                this.UpdateShopItems(shop);
                WeaponConfigurationHelper.UpdateWeaponStatistics(shop);
            }
            else
            {
                Debug.LogError("ShopWebServiceClient.GetShop returned with NULL");
            }
        }, delegate(Exception ex)
        {
            Debug.LogError(ex);
        }));

        yield break;
    }