cn.nukkit.network.protocol.MapCreateLockedCopyPacket 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;
public class MapCreateLockedCopyPacket extends DataPacket {
public long originalMapId;
public long newMapId;
@Override
public byte pid() {
return ProtocolInfo.MAP_CREATE_LOCKED_COPY_PACKET;
}
@Override
public void decode() {
this.originalMapId = this.getVarLong();
this.newMapId = this.getVarLong();
}
@Override
public void encode() {
this.reset();
this.putVarLong(this.originalMapId);
this.putVarLong(this.newMapId);
}
}