![JAR search and dependency download from the Maven repository](/logo.png)
cn.nukkit.network.protocol.CameraPacket 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 CameraPacket extends DataPacket {
public long cameraUniqueId;
public long playerUniqueId;
@Override
public byte pid() {
return ProtocolInfo.CAMERA_PACKET;
}
@Override
public void decode() {
this.cameraUniqueId = this.getVarLong();
this.playerUniqueId = this.getVarLong();
}
@Override
public void encode() {
this.reset();
this.putEntityUniqueId(this.cameraUniqueId);
this.putEntityUniqueId(this.playerUniqueId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy