LoupGarou/src/main/java/fr/leomelki/com/comphenix/packetwrapper/WrapperPlayServerHeldItemSlot.java
2020-09-07 23:40:57 +02:00

57 lines
1.7 KiB
Java

/**
* PacketWrapper - ProtocolLib wrappers for Minecraft packets
* Copyright (C) dmulloy2 <http://dmulloy2.net>
* Copyright (C) Kristian S. Strangeland
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.leomelki.com.comphenix.packetwrapper;
import com.comphenix.protocol.PacketType;
import com.comphenix.protocol.events.PacketContainer;
public class WrapperPlayServerHeldItemSlot extends AbstractPacket {
public static final PacketType TYPE = PacketType.Play.Server.HELD_ITEM_SLOT;
public WrapperPlayServerHeldItemSlot() {
super(new PacketContainer(TYPE), TYPE);
handle.getModifier().writeDefaults();
}
public WrapperPlayServerHeldItemSlot(PacketContainer packet) {
super(packet, TYPE);
}
/**
* Retrieve Slot.
* <p>
* Notes: the slot which the player has selected (0-8)
*
* @return The current Slot
*/
public int getSlot() {
return handle.getIntegers().read(0);
}
/**
* Set Slot.
*
* @param value - new value.
*/
public void setSlot(int value) {
handle.getIntegers().write(0, value);
}
}