package net.minecraft.network.login.client; import com.mojang.authlib.GameProfile; import java.io.IOException; import java.util.UUID; import net.minecraft.network.INetHandler; import net.minecraft.network.Packet; import net.minecraft.network.PacketBuffer; import net.minecraft.network.login.INetHandlerLoginServer; public class C00PacketLoginStart implements Packet { private GameProfile profile; private static final String __OBFID = "CL_00001379"; public C00PacketLoginStart() {} public C00PacketLoginStart(GameProfile profileIn) { this.profile = profileIn; } /** * Reads the raw packet data from the data stream. */ public void readPacketData(PacketBuffer data) throws IOException { this.profile = new GameProfile((UUID)null, data.readStringFromBuffer(16)); } /** * Writes the raw packet data to the data stream. */ public void writePacketData(PacketBuffer data) throws IOException { data.writeString(this.profile.getName()); } public void func_180773_a(INetHandlerLoginServer p_180773_1_) { p_180773_1_.processLoginStart(this); } public GameProfile getProfile() { return this.profile; } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(INetHandler handler) { this.func_180773_a((INetHandlerLoginServer)handler); } }