diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-12-13 18:49:11 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-12-13 18:49:11 +0100 |
commit | 8591935a4b48c24a16e8c103d474ee6803ce56a0 (patch) | |
tree | fe64a235a09dc353aa774854f0ea07bdfc99650f /src/FurnaceRecipe.h | |
parent | Own classes for all windows. (diff) | |
download | cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.gz cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.bz2 cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.lz cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.xz cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.zst cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/FurnaceRecipe.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/FurnaceRecipe.h b/src/FurnaceRecipe.h index 936ef706d..912b6aba2 100644 --- a/src/FurnaceRecipe.h +++ b/src/FurnaceRecipe.h @@ -34,6 +34,9 @@ public: /** Returns a recipe for the specified input, nullptr if no recipe found */ const cRecipe * GetRecipeFrom(const cItem & a_Ingredient) const; + + /** Returns true if the item is a fuel, false if not. */ + bool IsFuel(const cItem & a_Item) const; /** Returns the amount of time that the specified fuel burns, in ticks */ int GetBurnTime(const cItem & a_Fuel) const; |