package net.minecraft.network.packet; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; public class Packet200Statistic extends Packet { public int statisticId; public int amount; public Packet200Statistic() {} public Packet200Statistic(int par1, int par2) { this.statisticId = par1; this.amount = par2; } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(NetHandler par1NetHandler) { par1NetHandler.handleStatistic(this); } /** * Abstract. Reads the raw packet data from the data stream. */ public void readPacketData(DataInputStream par1DataInputStream) throws IOException { this.statisticId = par1DataInputStream.readInt(); this.amount = par1DataInputStream.readByte(); } /** * Abstract. Writes the raw packet data to the data stream. */ public void writePacketData(DataOutputStream par1DataOutputStream) throws IOException { par1DataOutputStream.writeInt(this.statisticId); par1DataOutputStream.writeByte(this.amount); } /** * Abstract. Return the size of the packet (not counting the header). */ public int getPacketSize() { return 6; } /** * If this returns true, the packet may be processed on any thread; otherwise it is queued for the main thread to * handle. */ public boolean canProcessAsync() { return true; } }