* 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>
18 lines
376 B
Java
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();
|
|
}
|