cn.nukkit.network.protocol.MobArmorEquipmentPacket 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 cn.nukkit.item.Item;
import lombok.ToString;
/**
* @author MagicDroidX (Nukkit Project)
*/
@ToString
public class MobArmorEquipmentPacket extends DataPacket {
public static final byte NETWORK_ID = ProtocolInfo.MOB_ARMOR_EQUIPMENT_PACKET;
@Override
public byte pid() {
return NETWORK_ID;
}
public long eid;
public Item[] slots = new Item[4];
@Override
public void decode() {
this.eid = this.getEntityRuntimeId();
this.slots = new Item[4];
this.slots[0] = this.getSlot();
this.slots[1] = this.getSlot();
this.slots[2] = this.getSlot();
this.slots[3] = this.getSlot();
}
@Override
public void encode() {
this.reset();
this.putEntityRuntimeId(this.eid);
this.putSlot(this.slots[0]);
this.putSlot(this.slots[1]);
this.putSlot(this.slots[2]);
this.putSlot(this.slots[3]);
}
}