public void ReadPacket(MinecraftStream stream) { PlayerID = stream.ReadInt8(); DeltaX = stream.ReadInt8(); DeltaY = stream.ReadInt8(); DeltaZ = stream.ReadInt8(); }
public void ReadPacket(MinecraftStream stream) { PlayerID = stream.ReadInt8(); X = stream.ReadInt16(); Y = stream.ReadInt16(); Z = stream.ReadInt16(); Yaw = stream.ReadUInt8(); Pitch = stream.ReadUInt8(); }
public void ReadPacket(MinecraftStream stream) { PlayerId = stream.ReadInt8(); Message = stream.ReadString(); }
public void ReadPacket(MinecraftStream stream) { PlayerId = stream.ReadInt8(); }