[Bleeding] Add BrewingStand API. Thanks N3X15 & md_5

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
Bukkit/Spigot 2012-01-17 17:11:23 +01:00
parent 52bcc1c28e
commit bacfd8931d

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);
}