Example #1
0
        // Token: 0x06002D28 RID: 11560 RVA: 0x000FE960 File Offset: 0x000FCB60
        public override void DeserializeMessage(byte[] data)
        {
            int num = 0;

            this.AccountSUID = ArrayManager.ReadUInt64(data, ref num);
            this.BoostType   = ArrayManager.ReadePlayerBoostType(data, ref num);
            byte[] array = new byte[data.Length - num];
            Array.Copy(data, num, array, 0, array.Length);
            base.DeserializeMessage(array);
        }
Example #2
0
 // Token: 0x06002D29 RID: 11561 RVA: 0x00017F87 File Offset: 0x00016187
 private void InitRefTypes()
 {
     this.AccountSUID = 0UL;
     this.BoostType   = ePlayerBoostType.None;
 }