package net.minecraft.network.packet; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; public class Packet33RelEntityMoveLook extends Packet30Entity { public Packet33RelEntityMoveLook() { this.rotating = true; } public Packet33RelEntityMoveLook(int par1, byte par2, byte par3, byte par4, byte par5, byte par6) { super(par1); this.xPosition = par2; this.yPosition = par3; this.zPosition = par4; this.yaw = par5; this.pitch = par6; this.rotating = true; } /** * Abstract. Reads the raw packet data from the data stream. */ public void readPacketData(DataInputStream par1DataInputStream) throws IOException { super.readPacketData(par1DataInputStream); this.xPosition = par1DataInputStream.readByte(); this.yPosition = par1DataInputStream.readByte(); this.zPosition = par1DataInputStream.readByte(); this.yaw = par1DataInputStream.readByte(); this.pitch = par1DataInputStream.readByte(); } /** * Abstract. Writes the raw packet data to the data stream. */ public void writePacketData(DataOutputStream par1DataOutputStream) throws IOException { super.writePacketData(par1DataOutputStream); par1DataOutputStream.writeByte(this.xPosition); par1DataOutputStream.writeByte(this.yPosition); par1DataOutputStream.writeByte(this.zPosition); par1DataOutputStream.writeByte(this.yaw); par1DataOutputStream.writeByte(this.pitch); } /** * Abstract. Return the size of the packet (not counting the header). */ public int getPacketSize() { return 9; } }