mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-11-14 19:34:58 -05:00
38 lines
799 B
Java
38 lines
799 B
Java
package com.github.steveice10.packetlib.test;
|
|
|
|
import com.github.steveice10.packetlib.io.NetInput;
|
|
import com.github.steveice10.packetlib.io.NetOutput;
|
|
import com.github.steveice10.packetlib.packet.Packet;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class PingPacket implements Packet {
|
|
private String id;
|
|
|
|
@SuppressWarnings("unused")
|
|
private PingPacket() {
|
|
}
|
|
|
|
public PingPacket(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getPingId() {
|
|
return this.id;
|
|
}
|
|
|
|
@Override
|
|
public void read(NetInput in) throws IOException {
|
|
this.id = in.readString();
|
|
}
|
|
|
|
@Override
|
|
public void write(NetOutput out) throws IOException {
|
|
out.writeString(this.id);
|
|
}
|
|
|
|
@Override
|
|
public boolean isPriority() {
|
|
return false;
|
|
}
|
|
}
|