org.bukkit.inventory.DoubleChestInventory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chest-server Show documentation
Show all versions of chest-server Show documentation
A spigot fork to kotlin structure and news.
The newest version!
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy