package net.minecraft.network.play.client; import java.io.IOException; import net.minecraft.network.INetHandler; import net.minecraft.network.Packet; import net.minecraft.network.PacketBuffer; import net.minecraft.network.play.INetHandlerPlayServer; public class C0DPacketCloseWindow implements Packet { private int windowId; private static final String __OBFID = "CL_00001354"; public void func_180759_a(INetHandlerPlayServer p_180759_1_) { p_180759_1_.processCloseWindow(this); } /** * Reads the raw packet data from the data stream. */ public void readPacketData(PacketBuffer data) throws IOException { this.windowId = data.readByte(); } /** * Writes the raw packet data to the data stream. */ public void writePacketData(PacketBuffer data) throws IOException { data.writeByte(this.windowId); } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(INetHandler handler) { this.func_180759_a((INetHandlerPlayServer)handler); } }