summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Chicken.h
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2024-11-02 22:27:47 +0100
committerAlexander Harkness <me@bearbin.net>2024-11-02 22:27:47 +0100
commitcb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a (patch)
treef647b20e1823f1846af88e832cf82a4a02e96e69 /src/Mobs/Chicken.h
parentImprove clang-format config file, remove automatically enforced code style from contrib guide. (diff)
downloadcuberite-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/Mobs/Chicken.h')
-rw-r--r--src/Mobs/Chicken.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/Mobs/Chicken.h b/src/Mobs/Chicken.h
index 5e84a61c8..c9d54ce5a 100644
--- a/src/Mobs/Chicken.h
+++ b/src/Mobs/Chicken.h
@@ -6,13 +6,11 @@
-class cChicken:
- public cPassiveMonster
+class cChicken : public cPassiveMonster
{
using Super = cPassiveMonster;
-public:
-
+ public:
cChicken();
CLASS_PROTODEF(cChicken)
@@ -30,10 +28,6 @@ public:
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
-private:
-
+ private:
int m_EggDropTimer;
-} ;
-
-
-
+};