// Token: 0x06004D7E RID: 19838 RVA: 0x0017AD38 File Offset: 0x00178F38
        public override object SerializeToClient()
        {
            DSTreasureMapNtf dstreasureMapNtf = new DSTreasureMapNtf();

            dstreasureMapNtf.FinishedLeves.AddRange(this.m_finishedLevels);
            dstreasureMapNtf.Version = (uint)base.Version;
            return(dstreasureMapNtf);
        }
示例#2
0
 // Token: 0x06007800 RID: 30720 RVA: 0x0020B264 File Offset: 0x00209464
 public void DeSerialize(DSTreasureMapNtf msg)
 {
     if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_DeSerializeDSTreasureMapNtf_hotfix != null)
     {
         this.m_DeSerializeDSTreasureMapNtf_hotfix.call(new object[]
         {
             this,
             msg
         });
         return;
     }
     BJLuaObjHelper.IsSkipLuaHotfix = false;
     this.m_treasureMapDS.ClearInitedData();
     this.m_treasureMapDS.InitVersion((ushort)msg.Version, (ushort)msg.Version);
     this.m_treasureMapDS.InitFinishedLevels(msg.FinishedLeves);
 }