[Bleeding] Add BrewingStand API. Thanks N3X15 & md_5

This commit is contained in:
Erik Broes 2012-01-17 17:11:23 +01:00
parent 418d18831c
commit c2e82a68c1

View File

@ -0,0 +1,21 @@
package org.bukkit.block;
/**
* Represents a brewing stand.
*/
public interface BrewingStand extends BlockState, ContainerBlock {
/**
* How much time is left in the brewing cycle
*
* @return Brew Time
*/
int getBrewingTime();
/**
* Set the time left before brewing completes.
*
* @param brewTime Brewing time
*/
void setBrewingTime(int brewTime);
}