
net.minecraft.server.PacketPlayOutPlayerListHeaderFooter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of walk-server Show documentation
Show all versions of walk-server Show documentation
A spigot fork to kotlin structure and news.
package net.minecraft.server;
import java.io.IOException;
public class PacketPlayOutPlayerListHeaderFooter implements Packet {
public IChatBaseComponent a;
public IChatBaseComponent b;
public PacketPlayOutPlayerListHeaderFooter() {
}
public PacketPlayOutPlayerListHeaderFooter(IChatBaseComponent ichatbasecomponent) {
this.a = ichatbasecomponent;
}
public PacketPlayOutPlayerListHeaderFooter(IChatBaseComponent header, IChatBaseComponent footer) {
this.a = header;
this.b = footer;
}
public void a(PacketDataSerializer packetdataserializer) throws IOException {
this.a = packetdataserializer.d();
this.b = packetdataserializer.d();
}
public void b(PacketDataSerializer packetdataserializer) throws IOException {
packetdataserializer.a(this.a);
packetdataserializer.a(this.b);
}
public void a(PacketListenerPlayOut packetlistenerplayout) {
packetlistenerplayout.a(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy