summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/block/ShulkerBox.java
blob: 4c1740e703b4f2c44d82d9eb9f0d630837dd612e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
}