
cn.nukkit.network.protocol.RiderJumpPacket Maven / Gradle / Ivy
package cn.nukkit.network.protocol;
import lombok.ToString;
@ToString
public class RiderJumpPacket extends DataPacket {
public static final byte NETWORK_ID = ProtocolInfo.RIDER_JUMP_PACKET;
/**
* This is jumpStrength.
* 对应跳跃进度条0-100
*
* Corresponds to jump progress bars 0-100
*/
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy