Example #1
0
 public PlayerPosition(BinaryInput Input)
 {
     this.x    = 319 - (int)Input.ReadInt();
     this.y    = 207 - (int)Input.ReadInt();
     this.vx   = -(int)Input.ReadInt();
     this.vy   = -(int)Input.ReadInt();
     this.dead = Input.ReadBool();
 }