diff options
Diffstat (limited to 'source/FurnaceRecipe.h')
-rw-r--r-- | source/FurnaceRecipe.h | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/source/FurnaceRecipe.h b/source/FurnaceRecipe.h index ccb008604..2f91e9bcb 100644 --- a/source/FurnaceRecipe.h +++ b/source/FurnaceRecipe.h @@ -14,31 +14,35 @@ class cItem; class cFurnaceRecipe { public: - cFurnaceRecipe(); + cFurnaceRecipe(void); ~cFurnaceRecipe(); - void ReloadRecipes(); + void ReloadRecipes(void); struct Fuel { - cItem* In; - float BurnTime; + cItem * In; + int BurnTime; ///< How long this fuel burns, in ticks }; struct Recipe { - cItem* In; - cItem* Out; - float CookTime; + cItem * In; + cItem * Out; + int CookTime; ///< How long this recipe takes to smelt, in ticks }; - const Recipe* GetRecipeFrom( const cItem & a_Ingredient ) const; - float GetBurnTime( const cItem & a_Fuel ) const; + + /// Returns a recipe for the specified input, NULL if no recipe found + const Recipe * GetRecipeFrom(const cItem & a_Ingredient) const; + + /// Returns the amount of time that the specified fuel burns, in ticks + int GetBurnTime(const cItem & a_Fuel) const; private: - void ClearRecipes(); + void ClearRecipes(void); struct sFurnaceRecipeState; - sFurnaceRecipeState* m_pState; + sFurnaceRecipeState * m_pState; }; |