示例#1
0
        // Token: 0x06004CDF RID: 19679 RVA: 0x00179884 File Offset: 0x00177A84
        public override object SerializeToClient()
        {
            DSRechargeStoreNtf dsrechargeStoreNtf = new DSRechargeStoreNtf();

            dsrechargeStoreNtf.Version = (uint)base.Version;
            dsrechargeStoreNtf.BoughtGoodsList.AddRange(this.m_boughtGoodsList);
            return(dsrechargeStoreNtf);
        }
 // Token: 0x06007626 RID: 30246 RVA: 0x00205374 File Offset: 0x00203574
 public void DeSerialize(DSRechargeStoreNtf msg)
 {
     if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_DeSerializeDSRechargeStoreNtf_hotfix != null)
     {
         this.m_DeSerializeDSRechargeStoreNtf_hotfix.call(new object[]
         {
             this,
             msg
         });
         return;
     }
     BJLuaObjHelper.IsSkipLuaHotfix = false;
     this.m_rechargeStoreDS.ClearInitedData();
     this.m_rechargeStoreDS.InitBoughtGoodsList(msg.BoughtGoodsList);
     this.m_rechargeStoreDS.InitVersion((ushort)msg.Version, (ushort)msg.Version);
 }