Exemplo n.º 1
0
        public System.Collections.Generic.List <byte> __encode()
        {
            var data = new System.Collections.Generic.List <byte>();

            if (this.syncs == null)
            {
                this.syncs = new EntityClientSyncArray();
            }
            data.AddRange(this.syncs.__encode());
            return(data);
        }
Exemplo n.º 2
0
 public int __decode(byte[] binData, ref int pos)
 {
     this.syncs = new EntityClientSyncArray();
     this.syncs.__decode(binData, ref pos);
     return(pos);
 }
Exemplo n.º 3
0
 public AddEntityNotice(EntityClientSyncArray syncs)
 {
     this.syncs = syncs;
 }
Exemplo n.º 4
0
 public AddEntityNotice()
 {
     syncs = new EntityClientSyncArray();
 }