diff options
author | Alexander Harkness <me@bearbin.net> | 2024-11-02 22:27:47 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2024-11-02 22:27:47 +0100 |
commit | cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a (patch) | |
tree | f647b20e1823f1846af88e832cf82a4a02e96e69 /src/FurnaceRecipe.h | |
parent | Improve clang-format config file, remove automatically enforced code style from contrib guide. (diff) | |
download | cuberite-clang-format-codebase.tar cuberite-clang-format-codebase.tar.gz cuberite-clang-format-codebase.tar.bz2 cuberite-clang-format-codebase.tar.lz cuberite-clang-format-codebase.tar.xz cuberite-clang-format-codebase.tar.zst cuberite-clang-format-codebase.zip |
Diffstat (limited to 'src/FurnaceRecipe.h')
-rw-r--r-- | src/FurnaceRecipe.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/FurnaceRecipe.h b/src/FurnaceRecipe.h index 84ee87092..5d3b4c8de 100644 --- a/src/FurnaceRecipe.h +++ b/src/FurnaceRecipe.h @@ -13,7 +13,7 @@ class cItem; class cFurnaceRecipe { -public: + public: cFurnaceRecipe(void); ~cFurnaceRecipe(); @@ -42,7 +42,7 @@ public: /** Returns the amount of time that the specified fuel burns, in ticks */ int GetBurnTime(const cItem & a_Fuel) const; -private: + private: void ClearRecipes(void); /** Parses the fuel contained in the line, adds it to m_pState's fuels. @@ -59,7 +59,3 @@ private: struct sFurnaceRecipeState; sFurnaceRecipeState * m_pState; }; - - - - |