cn.nukkit.network.protocol.UpdateEquipmentPacket 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(exclude = "namedtag")
public class UpdateEquipmentPacket extends DataPacket {
public int windowId;
public int windowType;
public int unknown; //TODO: find out what this is (vanilla always sends 0)
public long eid;
public byte[] namedtag;
@Override
public byte pid() {
return ProtocolInfo.UPDATE_EQUIPMENT_PACKET;
}
@Override
public void decode() {
}
@Override
public void encode() {
this.reset();
this.putByte((byte) this.windowId);
this.putByte((byte) this.windowType);
this.putEntityUniqueId(this.eid);
this.put(this.namedtag);
}
}