package net.minecraft.network.packet; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import net.minecraft.item.ItemStack; public class Packet107CreativeSetSlot extends Packet { public int slot; public ItemStack itemStack; public Packet107CreativeSetSlot() {} @SideOnly(Side.CLIENT) public Packet107CreativeSetSlot(int par1, ItemStack par2ItemStack) { this.slot = par1; this.itemStack = par2ItemStack; } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(NetHandler par1NetHandler) { par1NetHandler.handleCreativeSetSlot(this); } /** * Abstract. Reads the raw packet data from the data stream. */ public void readPacketData(DataInputStream par1DataInputStream) throws IOException { this.slot = par1DataInputStream.readShort(); this.itemStack = readItemStack(par1DataInputStream); } /** * Abstract. Writes the raw packet data to the data stream. */ public void writePacketData(DataOutputStream par1DataOutputStream) throws IOException { par1DataOutputStream.writeShort(this.slot); writeItemStack(this.itemStack, par1DataOutputStream); } /** * Abstract. Return the size of the packet (not counting the header). */ public int getPacketSize() { return 8; } }