diff options
Diffstat (limited to 'src/Items/ItemSnow.h')
-rw-r--r-- | src/Items/ItemSnow.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/Items/ItemSnow.h b/src/Items/ItemSnow.h index 87fa71e5f..ff79b2863 100644 --- a/src/Items/ItemSnow.h +++ b/src/Items/ItemSnow.h @@ -7,18 +7,21 @@ -class cItemSnowHandler final : - public cItemHandler +class cItemSnowHandler final : public cItemHandler { using Super = cItemHandler; -public: - + public: using Super::Super; -private: - - virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, const eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) const override + private: + virtual bool CommitPlacement( + cPlayer & a_Player, + const cItem & a_HeldItem, + const Vector3i a_PlacePosition, + const eBlockFace a_ClickedBlockFace, + const Vector3i a_CursorPosition + ) const override { BLOCKTYPE Block; NIBBLETYPE Meta; |