public void Load(LocalStorageSystem manager)
        {
            int count = 0;

            manager.GetInt();

            IAPPayment temp;

            for (int i = 0; i < count; ++i)
            {
                temp                     = new IAPPayment();
                temp.mPlatform           = manager.GetInt();
                temp.mServerId           = manager.GetString();
                temp.mPlayerId           = manager.GetString();
                temp.mProductId          = manager.GetString();
                temp.mGoodId             = manager.GetInt();
                temp.mOrderId            = manager.GetString();
                temp.mOrderReceipt       = manager.GetString();
                temp.mVerifyFaildedTimes = manager.GetInt();
                m_lUnVerifyList.Add(temp.mOrderId, temp);
            }
        }
Example #2
0
 public void Load(LocalStorageSystem manager)
 {
     m_iServerId   = manager.GetInt();
     m_sServerIP   = manager.GetString();
     m_iServerPort = manager.GetInt();
 }