All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.inventory.BrewerInventory Maven / Gradle / Ivy

package org.bukkit.inventory;

import org.bukkit.block.BrewingStand;

/**
 * Interface to the inventory of a Brewing Stand.
 */
public interface BrewerInventory extends Inventory {

  /**
   * Get the current ingredient for brewing.
   *
   * @return The ingredient.
   */
  ItemStack getIngredient();

  /**
   * Set the current ingredient for brewing.
   *
   * @param ingredient The ingredient
   */
  void setIngredient(ItemStack ingredient);

  BrewingStand getHolder();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy