package net.minecraft.server; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; public class Packet33RelEntityMoveLook extends Packet30Entity { public Packet33RelEntityMoveLook() { this.g = true; } public Packet33RelEntityMoveLook(int i, byte b0, byte b1, byte b2, byte b3, byte b4) { super(i); this.b = b0; this.c = b1; this.d = b2; this.e = b3; this.f = b4; this.g = true; } public void a(DataInputStream datainputstream) throws IOException { super.a(datainputstream); this.b = datainputstream.readByte(); this.c = datainputstream.readByte(); this.d = datainputstream.readByte(); this.e = datainputstream.readByte(); this.f = datainputstream.readByte(); } public void a(DataOutputStream dataoutputstream) throws IOException { super.a(dataoutputstream); dataoutputstream.writeByte(this.b); dataoutputstream.writeByte(this.c); dataoutputstream.writeByte(this.d); dataoutputstream.writeByte(this.e); dataoutputstream.writeByte(this.f); } public int a() { return 9; } }