Interface HologramEquipment
public interface HologramEquipment
Represents the externally visible equipment inventory of a hologram.
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic enumRepresents a slot in a holograms equipment inventory.
- 
Method SummaryModifier and TypeMethodDescription@Nullable ItemStackGet an item that has been put at a certain slot.getSkin()Get the skin that is being represented by this instance.voidsetItem(HologramEquipment.Slot slot, @Nullable ItemStack is) Set an item at a certain slot.
- 
Method Details- 
getSkinHologramSkin getSkin()Get the skin that is being represented by this instance.- Returns:
- The skin instance for which the items will be displayed
 
- 
setItemSet an item at a certain slot.- Parameters:
- slot- The slot at which the item shall be put to
- is- The item that shall be placed. May be- nullif it's supposed to be air
 
- 
getItemGet an item that has been put at a certain slot.- Parameters:
- slot- The slot at which the item has been put at
- Returns:
- The item that has been placed. Maybe be nullif it's air
 
 
-