cn.nukkit.network.protocol.RiderJumpPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.network.protocol;
import lombok.ToString;
@ToString
public class RiderJumpPacket extends DataPacket {
public static final byte NETWORK_ID = ProtocolInfo.RIDER_JUMP_PACKET;
public int unknown;
@Override
public byte pid() {
return NETWORK_ID;
}
@Override
public void decode() {
this.unknown = this.getVarInt();
}
@Override
public void encode() {
this.reset();
this.putVarInt(this.unknown);
}
}