예제 #1
0
 // Token: 0x06003F31 RID: 16177 RVA: 0x00023B06 File Offset: 0x00021D06
 private void InitRefTypes()
 {
     this.PartyID     = 0UL;
     this.AccountSUID = 0UL;
     this.PartyMember = new NetworkPartyMember();
     this.DidJoin     = ePartyJoinResponses.Joined;
     base.RequestID   = uint.MaxValue;
 }
예제 #2
0
        // Token: 0x06003F30 RID: 16176 RVA: 0x0011B298 File Offset: 0x00119498
        public override void DeserializeMessage(byte[] data)
        {
            int num = 0;

            base.PacketType    = ArrayManager.ReadUInt32(data, ref num);
            base.SessionToken  = ArrayManager.ReadUInt64(data, ref num);
            base.SecurityToken = ArrayManager.ReadUInt64(data, ref num);
            base.RequestID     = ArrayManager.ReadUInt32(data, ref num);
            ArrayManager.ReadUInt32(data, ref num);
            ArrayManager.ReadUInt32(data, ref num);
            this.PartyID     = ArrayManager.ReadUInt64(data, ref num);
            this.AccountSUID = ArrayManager.ReadUInt64(data, ref num);
            this.PartyMember = ArrayManager.ReadNetworkPartyMember(data, ref num);
            this.DidJoin     = ArrayManager.ReadePartyJoinResponses(data, ref num);
        }