Add CookTimeTotal API to Furnace

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2019-01-23 10:26:35 +11:00
parent 6cfba952ab
commit 3fbd969ca7

View file

@ -28,6 +28,8 @@ public interface Furnace extends Container, Nameable {
/**
* Get cook time.
*
* This is the amount of time the item has been cooking for.
*
* @return Cook time
*/
public short getCookTime();
@ -35,10 +37,30 @@ public interface Furnace extends Container, Nameable {
/**
* Set cook time.
*
* This is the amount of time the item has been cooking for.
*
* @param cookTime Cook time
*/
public void setCookTime(short cookTime);
/**
* Get cook time total.
*
* This is the amount of time the item is required to cook for.
*
* @return Cook time total
*/
public int getCookTimeTotal();
/**
* Set cook time.
*
* This is the amount of time the item is required to cook for.
*
* @param cookTimeTotal Cook time total
*/
public void setCookTimeTotal(int cookTimeTotal);
@Override
public FurnaceInventory getInventory();