cn.nukkit.network.protocol.EntityFallPacket 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 EntityFallPacket extends DataPacket {
public static final byte NETWORK_ID = ProtocolInfo.ENTITY_FALL_PACKET;
public long eid;
public float fallDistance;
public boolean unknown;
@Override
public void decode() {
this.eid = this.getEntityRuntimeId();
this.fallDistance = this.getLFloat();
this.unknown = this.getBoolean();
}
@Override
public void encode() {
}
@Override
public byte pid() {
return NETWORK_ID;
}
}