Example #1
0
 public override void FromBBuffer(xx.BBuffer bb)
 {
 }
Example #2
0
 public override void ToBBuffer(xx.BBuffer bb)
 {
     bb.Write(this.id);
     bb.Write(this.name);
 }
Example #3
0
 public override void FromBBuffer(xx.BBuffer bb)
 {
     bb.Read(ref this.id);
     bb.readLengthLimit = 0;
     bb.Read(ref this.name);
 }
Example #4
0
 public override void ToBBuffer(xx.BBuffer bb)
 {
 }