summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/inventory/DoubleChestInventory.java
blob: c03ad535c08da9a18cf7072e06568932bb81fb98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.bukkit.inventory;

import org.bukkit.block.DoubleChest;

/**
 * Interface to the inventory of a Double Chest.
 */
public interface DoubleChestInventory extends Inventory {

    /**
     * Get the left half of this double chest.
     *
     * @return The left side inventory
     */
    Inventory getLeftSide();

    /**
     * Get the right side of this double chest.
     *
     * @return The right side inventory
     */
    Inventory getRightSide();

    DoubleChest getHolder();
}