Files
Paper/paper-api/src/main/java/org/bukkit/block/ShulkerBox.java
2019-03-13 17:42:57 +11:00

21 lines
474 B
Java

package org.bukkit.block;
import org.bukkit.DyeColor;
import org.bukkit.Nameable;
import org.bukkit.loot.Lootable;
import org.jetbrains.annotations.NotNull;
/**
* Represents a captured state of a ShulkerBox.
*/
public interface ShulkerBox extends Container, Nameable, Lootable {
/**
* Get the {@link DyeColor} corresponding to this ShulkerBox
*
* @return the {@link DyeColor} of this ShulkerBox
*/
@NotNull
public DyeColor getColor();
}