Exemple #1
0
 public void ReadPacket(MinecraftStream stream)
 {
     PlayerID = stream.ReadInt8();
     DeltaX   = stream.ReadInt8();
     DeltaY   = stream.ReadInt8();
     DeltaZ   = stream.ReadInt8();
 }
Exemple #2
0
 public void ReadPacket(MinecraftStream stream)
 {
     PlayerID = stream.ReadInt8();
     X        = stream.ReadInt16();
     Y        = stream.ReadInt16();
     Z        = stream.ReadInt16();
     Yaw      = stream.ReadUInt8();
     Pitch    = stream.ReadUInt8();
 }
Exemple #3
0
 public void ReadPacket(MinecraftStream stream)
 {
     PlayerId = stream.ReadInt8();
     Message  = stream.ReadString();
 }
Exemple #4
0
 public void ReadPacket(MinecraftStream stream)
 {
     PlayerId = stream.ReadInt8();
 }