Files
Paper/paper-api/src/main/java/org/bukkit/block/ShulkerBox.java
Bukkit/Spigot 2ab655238c Improvements to BlockStates
* Update Javadoc of block state classes to better match implementation behaviour.
* Add Container interface which provides access to the snapshot inventory.

By: Lukas Hennig <lukas@wirsindwir.de>
2017-08-05 14:35:40 +10:00

18 lines
376 B
Java

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